Rabbitmq Overview
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/rabbitmq-overview/ |
Get RabbitMQ cluster overview statistics |
Get RabbitMQ cluster overview statistics
Returns global RabbitMQ cluster health and performance metrics.
Includes: - Cluster info: Name, RabbitMQ version, Erlang version - Message stats: Publish/deliver/confirm/ack counts and rates (per second) - Queue totals: Total messages, ready messages, unacknowledged messages - Object totals: Connection, channel, exchange, queue, and consumer counts - Listeners: Active protocol listeners (AMQP, HTTP, etc.)
Requires support user permissions.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 | |
- API Source:
rabbitmq_overview_retrieve
1 2 3 4 5 6 7 8 9 10 | |
200 -
| Field | Type | Description |
|---|---|---|
cluster_name |
string | Name of the RabbitMQ cluster |
rabbitmq_version |
string | RabbitMQ server version |
erlang_version |
string | Erlang/OTP runtime version |
message_stats |
any | Message throughput statistics with rates |
queue_totals |
any | Global queue message counts |
object_totals |
any | Counts of connections, channels, queues, etc. |
node |
string | Current RabbitMQ node name |
listeners |
array of objects | Active protocol listeners |
listeners.protocol |
string | Protocol name (e.g., 'amqp', 'http', 'clustering') |
listeners.port |
integer | Listening port number |
503 -
| Field | Type | Description |
|---|---|---|
error |
string | Error message describing what went wrong |