Complete the code to check the status of a RabbitMQ node.
rabbitmqctl [1]The status command shows the current state of the RabbitMQ node, which helps monitor its health.
Complete the command to list all queues in RabbitMQ.
rabbitmqctl [1]The list_queues command shows all queues, which helps monitor message flow and backlog.
Fix the error in the command to check RabbitMQ memory usage.
rabbitmqctl [1]The report command provides detailed info including memory usage, which is key for monitoring resource issues.
Fill both blanks to create a command that lists queues with their message counts.
rabbitmqctl [1] name messages_ready [2]
list_queues lists queues, and messages_unacknowledged adds unacknowledged message counts with ready messages, helping monitor queue health.
Fill all three blanks to create a command that monitors RabbitMQ connections with detailed info.
rabbitmqctl [1] [2] [3]
list_connections shows active connections, --formatter pretty_table provides detailed formatted output, all useful for monitoring.