]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/cpu.conf
added support for notifications delays; fixes #945
[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 > 80
8     crit: $this > 90
9    delay: up 0 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 > 10
19     crit: $this > 30
20    delay: up 0 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 > 10
30     crit: $this > 30
31    delay: up 0 down 15m multiplier 1.5 max 1h
32     info: average CPU steal time for the last 20 minutes
33       to: sysadmin