]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/softnet.conf
fail2bain plugin: "Currently In Jail" chart renamed
[netdata.git] / conf.d / health.d / softnet.conf
1 # check for common /proc/net/softnet_stat errors
2
3    alarm: 10min_netdev_backlog_exceeded
4       on: system.softnet_stat
5   lookup: sum -10m unaligned absolute of dropped
6    units: packets
7    every: 1m
8     warn: $this > 0
9    delay: down 1h multiplier 1.5 max 2h
10     info: number of packets dropped in the last 10min, because sysctl net.core.netdev_max_backlog was exceeded (this can be a cause for dropped packets)
11       to: sysadmin
12
13    alarm: 10min_netdev_budget_ran_outs
14       on: system.softnet_stat
15   lookup: sum -10m unaligned absolute of squeezed
16    units: events
17    every: 1m
18     warn: $this > (($status >= $WARNING)  ? (0) : (10))
19    delay: down 1h multiplier 1.5 max 2h
20     info: number of times, during the last 10min, ksoftirq ran out of sysctl net.core.netdev_budget or time slice, with work remaining (this can be a cause for dropped packets)
21       to: silent