Update rules.yml

WMI memory alert had opposite meaning, triggered on 90% free instead of 90% used
This commit is contained in:
Anton Smolkov 2020-05-19 11:07:11 +03:00 committed by GitHub
parent 455d033d9a
commit bbbe14f2bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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%