beanstalkd 的输出

发布于 2024-10-21 02:24:39 字数 98 浏览 6 评论 0原文

我想监视有哪些作业正在流经 beanstalkd 队列。有没有办法通过命令行来做到这一点。在命令行上运行 beanstalkd 时,不会显示任何输出。本质上我正在寻找调试或详细选项。

I want to monitor what jobs are flowing through a beanstalkd queue. Is there a way I can do this through command line. On running beanstalkd on command line no output is displayed. Essentially I am looking for a debug or a verbose option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晨说晚安 2024-10-28 02:24:39

据我所知,beanstalkd 没有附带任何管理工具。但是,如果您安装了 python/ruby/perl 库之一,您可以编写一些东西来非常轻松地发出服务器状态。

下面是一个使用 python 和 beanstalkc 客户端包的示例:

#!/usr/bin/python                                                                                                                                                           

import beanstalkc

b = beanstalkc.Connection(host='localhost', port=11300)
for tube in b.tubes():
    print "Tube: %s" % tube
    stats = b.stats_tube(tube)
    for k, v in stats.items():
        print "   %s: %s" % (k, v)

beanstalkd doesn't ship with any management tools as far as I know. But if you install one of the python/ruby/perl libraries you can write something to emit server status pretty easily.

Here's an example using python and the beanstalkc client package:

#!/usr/bin/python                                                                                                                                                           

import beanstalkc

b = beanstalkc.Connection(host='localhost', port=11300)
for tube in b.tubes():
    print "Tube: %s" % tube
    stats = b.stats_tube(tube)
    for k, v in stats.items():
        print "   %s: %s" % (k, v)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文