From a5a3c2cd92d2be5d7f2bed51770774b87ffca35e Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Tue, 17 Jun 2025 17:07:05 +0200 Subject: [PATCH] fix: HostHighCpuUsage (#466) closes #457 --- _data/rules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/rules.yml b/_data/rules.yml index cfe41f8..d4e34c3 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -207,7 +207,7 @@ groups: for: 2m - name: Host high CPU load description: CPU load is > 80% - query: '(avg by (instance) (rate(node_cpu_seconds_total{mode!="idle"}[2m]))) > .80' + query: '100 - (avg by (instance) (rate(node_cpu_seconds_total{mode="idle"}[5m]))) > .80' severity: warning for: 10m - name: Host CPU is underutilized