hritik
hritik

Reputation: 3

rabbitmq management api documentation about the arguments of json response of api

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

Answers (1)

Gabriele Santomaggio
Gabriele Santomaggio

Reputation: 22682

Check this link:

https://rawcdn.githack.com/rabbitmq/rabbitmq-server/v3.13.4/deps/rabbitmq_management/priv/www/api/index.html

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

Related Questions