0
0
RabbitMQdevops~10 mins

Memory and disk alarms in RabbitMQ - Interactive Code Practice

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

Complete the command to check RabbitMQ memory alarm status.

RabbitMQ
rabbitmqctl status | grep '[1]'
Drag options to blanks, or click blank then click option'
Auptime
Bmemory_alarm
Clisteners
Ddisk_free_limit
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'disk_free_limit' instead of 'memory_alarm'.
Searching for 'uptime' which is unrelated.
2fill in blank
medium

Complete the command to reset the disk alarm on a RabbitMQ node.

RabbitMQ
rabbitmqctl [1] disk_free_alarm
Drag options to blanks, or click blank then click option'
Aset_disk_alarm
Bclear_disk_alarm
Creset_disk_alarm
Dstop_disk_alarm
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'clear_disk_alarm' which is not a valid command.
Using 'set_disk_alarm' which sets, not resets.
3fill in blank
hard

Fix the error in the command to set a memory alarm limit to 2GB.

RabbitMQ
rabbitmqctl set_vm_memory_high_watermark [1]
Drag options to blanks, or click blank then click option'
A0.2
B2g
C2GB
D0.2GB
Attempts:
3 left
💡 Hint
Common Mistakes
Using '2GB' or '2g' which are invalid formats.
Using '0.2GB' which mixes fraction and units.
4fill in blank
hard

Fill both blanks to create a command that disables the memory alarm and then checks its status.

RabbitMQ
rabbitmqctl [1] && rabbitmqctl status | grep [2]
Drag options to blanks, or click blank then click option'
Aclear_memory_alarm
Bmemory_alarm
C'memory_alarm'
Dreset_memory_alarm
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'clear_memory_alarm' which is not a valid command.
Not quoting the grep pattern.
5fill in blank
hard

Fill all three blanks to set a disk free limit to 1GB, verify it, and then reset the disk alarm.

RabbitMQ
rabbitmqctl [1] 1073741824 && rabbitmqctl status | grep [2] && rabbitmqctl [3]
Drag options to blanks, or click blank then click option'
Aset_disk_free_limit
B'disk_free_limit'
Creset_disk_alarm
Dset_vm_memory_high_watermark
Attempts:
3 left
💡 Hint
Common Mistakes
Using memory commands instead of disk commands.
Not quoting the grep pattern.
Using wrong reset command.