确定 Rails 应用程序中当前 Resque 工作线程的数量
在我的 Rails 应用程序中,我想弹出一个窗口,显示当前正在运行的 Resque 工作线程的数量。这主要是为了当没有工作人员运行时我可以警告用户。
我在routes.rb中像这样安装了Resque管理应用程序:
mount Resque::Server, :at => "/admin/resque"
我看到有一个名为/admin/resque/stats.txt
的文本文件,其中包含以下内容:
resque.pending=0 resque.processed+=8 resque.failed+=0 resque.workers=2 resque.working=0 queues.model_job_queue=0
我应该获取此文件吗?解析它的 resque.workers
的值还是有其他更好的方法?
In my Rails app, I'd like to pop up a window that shows the number of Resque workers currently running. This would mainly be so that I can warn users when there are no workers running.
I have the Resque admin app mounted like so in routes.rb:
mount Resque::Server, :at => "/admin/resque"
I see that there is a text file called /admin/resque/stats.txt
that includes the following:
resque.pending=0 resque.processed+=8 resque.failed+=0 resque.workers=2 resque.working=0 queues.model_job_queue=0
Should I fetch this file and just parse it for the value of resque.workers
or is there another, better method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会直接向 Resque 询问一组工作人员并计算返回的元素。
这正是 resque 获取构建
/resque/stats.txt
的计数的方式。希望这有帮助。
I'd ask Resque directly for an array of workers and count the elements returned.
This is exactly how resque gets the count to build
/resque/stats.txt
.Hope this helps.