0
0
RabbitMQdevops~10 mins

Why monitoring prevents production incidents in RabbitMQ - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to check the status of a RabbitMQ node.

RabbitMQ
rabbitmqctl [1]
Drag options to blanks, or click blank then click option'
Areset
Bstart
Cstop
Dstatus
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' or 'stop' instead of 'status' will not show the node's health.
Using 'reset' will clear data, which is not for monitoring.
2fill in blank
medium

Complete the command to list all queues in RabbitMQ.

RabbitMQ
rabbitmqctl [1]
Drag options to blanks, or click blank then click option'
Alist_nodes
Blist_queues
Clist_exchanges
Dlist_connections
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'list_nodes' shows nodes, not queues.
Using 'list_exchanges' or 'list_connections' shows other resources.
3fill in blank
hard

Fix the error in the command to check RabbitMQ memory usage.

RabbitMQ
rabbitmqctl [1]
Drag options to blanks, or click blank then click option'
Areport
Blist_consumers
Clist_queues
Dstatus
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'status' shows general status but not detailed memory info.
Using 'list_queues' or 'list_consumers' does not show memory usage.
4fill in blank
hard

Fill both blanks to create a command that lists queues with their message counts.

RabbitMQ
rabbitmqctl [1] name messages_ready [2]
Drag options to blanks, or click blank then click option'
Alist_queues
Blist_nodes
C--sort
Dmessages_unacknowledged
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'list_nodes' instead of 'list_queues' will not show queues.
Using '--sort' does not add message count details.
5fill in blank
hard

Fill all three blanks to create a command that monitors RabbitMQ connections with detailed info.

RabbitMQ
rabbitmqctl [1] [2] [3]
Drag options to blanks, or click blank then click option'
Alist_connections
B--formatter
Cpretty_table
Dstatus
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'status' alone does not list connections.
Omitting the formatter options results in raw output.