Question:
Add an annotation to the alert called description that will print out the message that looks like this Instance has low disk space on filesystem , current free space is at %
groups:
- name: node
rules:
- alert: node_filesystem_free_percent
expr: 100 * node_filesystem_free_bytes{job="node"} / node_filesystem_size_bytes{job="node"} < 10
Examples of the two metrics used in the alert can be seen below:
node_filesystem_free_bytes{device="/dev/sda3", fstype="ext4", instance="node1", job="web", mountpoint="/home"}
node_filesystem_size_bytes{device="/dev/sda3", fstype="ext4", instance="nodde1", job="web", mountpoint="/home"}
Choose the correct answer: