]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/net.conf
Merge remote-tracking branch 'lucadev/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 30 minutes of data
5
6 template: 30min_packet_drops
7       on: net.drops
8   lookup: sum -30m unaligned absolute
9    every: 1m
10     crit: $this > 0
11    units: packets
12     info: dropped packets in the last 30 minutes
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 30 minutes of data
20
21 template: 30min_fifo_errors
22       on: net.fifo
23   lookup: sum -30m unaligned absolute
24    every: 1m
25     crit: $this > 0
26    units: errors
27     info: network interface fifo errors in the last 30 minutes
28       to: sysadmin
29