]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/cpu.conf
Merge pull request #879 from ktsaou/master
[netdata.git] / conf.d / health.d / cpu.conf
1
2 template: 5min_cpu_pcent
3       on: system.cpu
4   lookup: average -5m unaligned of user,system,nice,softirq,irq,guest,guest_nice
5    every: 1m
6     warn: $this > 90
7    units: %
8     info: average cpu utilization for the last 5 minutes
9       to: sysadmin
10
11 template: 5min_iowait_cpu_pcent
12       on: system.cpu
13   lookup: average -5m unaligned of iowait
14    every: 1m
15     warn: $this > 10
16    units: %
17     info: average wait I/O for the last 5 minutes
18       to: sysadmin
19
20 template: 20min_steal_cpu_pcent
21       on: system.cpu
22   lookup: average -20m unaligned of steal
23    every: 5m
24     warn: $this > 10
25    units: %
26     info: average stolen CPU time for the last 20 minutes
27       to: sysadmin