Complete the code to check the number of messages ready in a RabbitMQ queue.
rabbitmqctl list_queues name messages_[1]The messages_ready metric shows how many messages are ready to be delivered to consumers.
Complete the command to monitor the number of consumers connected to a queue.
rabbitmqctl list_queues name [1]The consumers metric shows how many clients are currently consuming messages from the queue.
Fix the error in the command to list queues with unacknowledged messages.
rabbitmqctl list_queues name messages_[1]The correct metric for messages delivered but not yet acknowledged is messages_unacknowledged.
Fill both blanks to list queues with their memory usage and number of consumers.
rabbitmqctl list_queues name [1] [2]
The memory metric shows how much memory the queue uses, and consumers shows how many clients consume from it.
Fill all three blanks to list queues with messages ready, unacknowledged, and consumers.
rabbitmqctl list_queues name [1] [2] [3]
This command shows the number of messages ready to deliver, messages sent but not acknowledged, and the number of consumers.