mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-26 19:37:27 +08:00
Use node_filesystem_avail_bytes
This is consistent with the other disk rule, and the will fire when the disk will fill for non-root users.
This commit is contained in:
parent
57b7007de4
commit
e5d4a5b64e
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ groups:
|
|||
"--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|run)($|/)"
|
||||
- name: Host disk will fill in 4 hours
|
||||
description: Disk will fill in 4 hours at current write rate
|
||||
query: 'predict_linear(node_filesystem_free_bytes{fstype!~"tmpfs"}[1h], 4 * 3600) < 0'
|
||||
query: 'predict_linear(node_filesystem_avail_bytes{fstype!~"tmpfs"}[1h], 4 * 3600) < 0'
|
||||
severity: warning
|
||||
- name: Host out of inodes
|
||||
description: Disk is almost running out of available inodes (< 10% left)
|
||||
|
|
|
|||
Loading…
Reference in a new issue