]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/net.conf
Merge pull request #905 from ktsaou/master
[netdata.git] / conf.d / health.d / net.conf
1
2 # check if an interface is dropping packets
3 # the alarm is checked every 10 seconds
4 # and examines the last hour of data
5
6 template: 1hour_packet_drops
7       on: net.drops
8   lookup: sum -1h unaligned absolute
9    every: 1m
10     warn: $this > 0
11    units: packets
12     info: interface dropped packets in the last hour
13       to: sysadmin
14
15
16 # check if an interface is having FIFO
17 # buffer errors
18 # the alarm is checked every 10 seconds
19 # and examines the last hour of data
20
21 template: 1hour_fifo_errors
22       on: net.fifo
23   lookup: sum -1h unaligned absolute
24    every: 1m
25     warn: $this > 0
26    units: errors
27     info: interface fifo errors in the last hour
28       to: sysadmin
29