beanstalkd 的输出
我想监视有哪些作业正在流经 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,beanstalkd 没有附带任何管理工具。但是,如果您安装了 python/ruby/perl 库之一,您可以编写一些东西来非常轻松地发出服务器状态。
下面是一个使用 python 和 beanstalkc 客户端包的示例:
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: