I'm using Celery with RabbitMQ backend. How can I monitor and get the number of pending tasks? "celery events" and djcelery shows the running and completed tasks. Should I be monitoring RabbitMQ? If so how?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you are using RabbitMq as broker, I recommend to use for that rabbitmqctl ( usually /usr/sbin/rabbitmqctl ). So command:
Shows you number of tasks in queues. Other solution is installing rabbitmq-plugins: management plugin. You can do it with:
Your rabbitmq-server will provide webagent where you can easily manage your rabbit-server. |
|||||||
|