]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/cpu.conf
60f494d70c078c1f885bae1b731c3378df22fd34
[netdata.git] / conf.d / health.d / cpu.conf
1
2 template: 10min_cpu_usage
3       on: system.cpu
4   lookup: average -10m unaligned of user,system,nice,softirq,irq,guest,guest_nice
5    units: %
6    every: 1m
7     warn: $this > (($status >= $WARNING)  ? (75) : (85))
8     crit: $this > (($status == $CRITICAL) ? (85) : (95))
9    delay: down 15m multiplier 1.5 max 1h
10     info: average cpu utilization for the last 10 minutes
11       to: sysadmin
12
13 template: 10min_cpu_iowait
14       on: system.cpu
15   lookup: average -10m unaligned of iowait
16    units: %
17    every: 1m
18     warn: $this > (($status >= $WARNING)  ? (20) : (40))
19     crit: $this > (($status == $CRITICAL) ? (40) : (50))
20    delay: down 15m multiplier 1.5 max 1h
21     info: average CPU wait I/O for the last 10 minutes
22       to: sysadmin
23
24 template: 20min_steal_cpu
25       on: system.cpu
26   lookup: average -20m unaligned of steal
27    units: %
28    every: 5m
29     warn: $this > (($status >= $WARNING)  ? (5)  : (10))
30     crit: $this > (($status == $CRITICAL) ? (20) : (30))
31    delay: down 1h multiplier 1.5 max 2h
32     info: average CPU steal time for the last 20 minutes
33       to: sysadmin