mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Fix time unit on disk read/write latency rule
This commit is contained in:
parent
4cd3ff1d4a
commit
4266b4d326
1 changed files with 2 additions and 2 deletions
|
|
@ -157,11 +157,11 @@ groups:
|
|||
severity: warning
|
||||
- name: Host unusual disk read latency
|
||||
description: Disk latency is growing (read operations > 100ms)
|
||||
query: "rate(node_disk_read_time_seconds_total[1m]) / rate(node_disk_reads_completed_total[1m]) > 100"
|
||||
query: "rate(node_disk_read_time_seconds_total[1m]) / rate(node_disk_reads_completed_total[1m]) > 0.1"
|
||||
severity: warning
|
||||
- name: Host unusual disk write latency
|
||||
description: Disk latency is growing (write operations > 100ms)
|
||||
query: "rate(node_disk_write_time_seconds_total[1m]) / rate(node_disk_writes_completed_total[1m]) > 100"
|
||||
query: "rate(node_disk_write_time_seconds_total[1m]) / rate(node_disk_writes_completed_total[1m]) > 0.1"
|
||||
severity: warning
|
||||
- name: Host high CPU load
|
||||
description: CPU load is > 80%
|
||||
|
|
|
|||
Loading…
Reference in a new issue