Integration / RabbitMQ Interview Questions
What is the purpose of the RabbitMQ management plugin?
The management plugin adds a browser-based UI and a REST API for observing and administering a RabbitMQ node or cluster.
Through it, an operator can inspect queues, exchanges, bindings, connections, and channels, manage users, vhosts, and permissions, and view real-time message rates and node health.
It is enabled with:
rabbitmq-plugins enable rabbitmq_management
The same data it displays is also available programmatically, which makes it useful for building custom monitoring dashboards or automation scripts.
More Related questions...