Reputation: 3
I am trying monitor all the queues of my rabbitmq server using RabbitMQ Management HTTP API. I need detailed documentation about all the arguments returned in json by localhost:15672/api/queues
Upvotes: 0
Views: 740
Reputation: 22682
Check this link:
Most of the GET requests you can issue to the HTTP API return JSON objects with a large number of keys. While a few of these keys represent things you set yourself in a PUT request or AMQP command (e.g. queue durability or arguments), most of them represent statistics to do with the object in question. This page attempts to document them.
Upvotes: 1