]> arthur.barton.de Git - netdata.git/commitdiff
exclude nice and steal from cpu usage alarms; fixes #1833
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Mon, 27 Feb 2017 18:31:18 +0000 (20:31 +0200)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Mon, 27 Feb 2017 18:31:18 +0000 (20:31 +0200)
conf.d/health.d/cpu.conf

index 60f494d70c078c1f885bae1b731c3378df22fd34..30a7140972925987308693b432c195b856d74d38 100644 (file)
@@ -1,13 +1,13 @@
 
 template: 10min_cpu_usage
       on: system.cpu
-  lookup: average -10m unaligned of user,system,nice,softirq,irq,guest,guest_nice
+  lookup: average -10m unaligned of user,system,softirq,irq,guest
    units: %
    every: 1m
     warn: $this > (($status >= $WARNING)  ? (75) : (85))
     crit: $this > (($status == $CRITICAL) ? (85) : (95))
    delay: down 15m multiplier 1.5 max 1h
-    info: average cpu utilization for the last 10 minutes
+    info: average cpu utilization for the last 10 minutes (excluding iowait, nice and steal)
       to: sysadmin
 
 template: 10min_cpu_iowait