Challenge - 5 Problems
RabbitMQ Alarm Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate2:00remaining
Check RabbitMQ memory alarm status
What is the output of the following command when RabbitMQ memory alarm is active?
RabbitMQ
rabbitmqctl status | grep memory
Attempts:
2 left
💡 Hint
Look for the memory field in the status output.
✗ Incorrect
When RabbitMQ memory alarm is active, the status command shows {memory, true}.
🧠 Conceptual
intermediate2:00remaining
Purpose of disk alarm in RabbitMQ
What is the main purpose of the disk alarm in RabbitMQ?
Attempts:
2 left
💡 Hint
Think about how RabbitMQ protects itself from disk full conditions.
✗ Incorrect
Disk alarms block message producers to prevent RabbitMQ from running out of disk space.
❓ Troubleshoot
advanced2:00remaining
Resolving RabbitMQ memory alarm stuck state
After freeing memory, the RabbitMQ memory alarm remains active. Which command correctly clears the alarm?
Attempts:
2 left
💡 Hint
You must specify the correct node name to clear the alarm.
✗ Incorrect
The command requires the exact node name to clear the memory alarm.
✅ Best Practice
advanced2:00remaining
Recommended disk alarm threshold configuration
Which configuration snippet correctly sets the disk alarm threshold to 5GB free space in RabbitMQ?
RabbitMQ
rabbitmq.conf
Attempts:
2 left
💡 Hint
RabbitMQ config supports size suffixes like 5GB, MB for disk limits.
✗ Incorrect
RabbitMQ supports size suffixes such as 5GB for disk_free_limit.absolute in rabbitmq.conf.
🔀 Workflow
expert3:00remaining
Sequence to diagnose and fix RabbitMQ disk alarm
What is the correct order of steps to diagnose and fix a RabbitMQ disk alarm?
Attempts:
2 left
💡 Hint
Start by checking the actual disk usage before confirming alarm and fixing.
✗ Incorrect
First check disk usage, then confirm alarm, free space, and finally clear alarm.