I'm using Celery in a django project, my broker is RabbitMQ, and I want to retrieve the length of the queues. I went through the code of Celery but did not find the tool to do that. I found this issue on stackoverflow (Check RabbitMQ queue size from client), but I don't find it satisfying.
Everything is setup in celery, so there should be some kind of magic method to retrieve what I want, without specifying a channel / connection.
Does anyone have any idea about this question ?
Thanks !