]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/cpu.conf
3d98be407b33adffbe40655feceb2b578abe96f2
[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    every: 1m
6     warn: $this > 80
7     crit: $this > 90
8    units: %
9     info: average cpu utilization for the last 10 minutes
10       to: sysadmin
11
12 template: 10min_cpu_iowait
13       on: system.cpu
14   lookup: average -10m unaligned of iowait
15    every: 1m
16     warn: $this > 10
17     crit: $this > 30
18    units: %
19     info: average CPU wait I/O for the last 10 minutes
20       to: sysadmin
21
22 template: 20min_steal_cpu
23       on: system.cpu
24   lookup: average -20m unaligned of steal
25    every: 5m
26     warn: $this > 10
27     crit: $this > 30
28    units: %
29     info: average CPU steal time for the last 20 minutes
30       to: sysadmin