mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Fixed windows disk usage computation
This commit is contained in:
parent
70211339af
commit
ca22d8d3d9
1 changed files with 1 additions and 1 deletions
|
|
@ -445,7 +445,7 @@ services:
|
|||
severity: warning
|
||||
- name: Disk Space Usage
|
||||
description: Disk Space on Drive is used more than 80%
|
||||
query: '100.0 - 100 * ((wmi_logical_disk_free_bytes{} / 1000 / 1000 ) / (wmi_logical_disk_size_bytes{} / 1024 / 1024)) > 80'
|
||||
query: '100.0 - 100 * ((wmi_logical_disk_free_bytes{} / 1024 / 1024 ) / (wmi_logical_disk_size_bytes{} / 1024 / 1024)) > 80'
|
||||
severity: error
|
||||
|
||||
- name: Juniper
|
||||
|
|
|
|||
Loading…
Reference in a new issue