Does anyone know if there's a way to check the number of messages in a RabbitMQ queue from a client application?
I'm using the .NET client library.
|
Does anyone know if there's a way to check the number of messages in a RabbitMQ queue from a client application? I'm using the .NET client library. |
||||
|
|
|
You actually can retrieve this via the client. When perform a
|
|||
|
|
I am 2 years too late but I was searching for it myself and found that rabbitmq gives u simple script to communicate to erlang nodes..its in sbin folder where the starting script for RabbitMQ is located..so you can basically say
this will display the queues along with the count of messages pending to those queues similarly you can also say
etc. For more info you can visit here |
|||
|
|
|
Update: it appears that the pika implementation of queue_declare(..) has changed since mmalone's very helpful post. In python/pika (v0.9.5) it's still possible to check the queue depth via pika, but it requires a slightly more indirect approach. queue_declare(...) passes a method object into its callback function, which you can then inspect. For example, to check the number of messages and consumers in the queue named
Hope this helps, and please go easy on me, I'm new around here :-) |
|||
|
|
|
If you wanted to do this in .Net, check which version of the Client library you are using. I'm using the 2.2.0 version and I had to use BasicGet(queue, noAck).
And you see the following output:
HTH |
||||
|
|