Complete the command to check RabbitMQ memory alarm status.
rabbitmqctl status | grep '[1]'
The memory_alarm keyword shows if the memory alarm is active in RabbitMQ.
Complete the command to reset the disk alarm on a RabbitMQ node.
rabbitmqctl [1] disk_free_alarmThe reset_disk_alarm command clears the disk alarm on the node.
Fix the error in the command to set a memory alarm limit to 2GB.
rabbitmqctl set_vm_memory_high_watermark [1]The memory watermark is set as a fraction of total RAM, so 0.2 means 20% of RAM.
Fill both blanks to create a command that disables the memory alarm and then checks its status.
rabbitmqctl [1] && rabbitmqctl status | grep [2]
Use reset_memory_alarm to disable the alarm, then grep for 'memory_alarm' to check status.
Fill all three blanks to set a disk free limit to 1GB, verify it, and then reset the disk alarm.
rabbitmqctl [1] 1073741824 && rabbitmqctl status | grep [2] && rabbitmqctl [3]
Use set_disk_free_limit with bytes for 1GB, grep 'disk_free_limit' to verify, then reset_disk_alarm to clear the alarm.