mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Update rules.yml
WMI memory alert had opposite meaning, triggered on 90% free instead of 90% used
This commit is contained in:
parent
455d033d9a
commit
bbbe14f2bd
1 changed files with 1 additions and 1 deletions
|
|
@ -542,7 +542,7 @@ services:
|
|||
severity: warning
|
||||
- name: Memory Usage
|
||||
description: Memory Usage is more than 90%
|
||||
query: '100*(wmi_os_physical_memory_free_bytes) / wmi_cs_physical_memory_bytes > 90'
|
||||
query: '100 - (wmi_os_physical_memory_free_bytes/wmi_cs_physical_memory_bytes) * 100 > 90'
|
||||
severity: warning
|
||||
- name: Disk Space Usage
|
||||
description: Disk Space on Drive is used more than 80%
|
||||
|
|
|
|||
Loading…
Reference in a new issue