Ubuntu 20.04.1LTS, I have set the “to” line in the inbound_packets_dropped_ratio template to silent however I’m still receiving warnings:
template: inbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
families: *
lookup: sum -10m unaligned absolute of received
calc: (($inbound_packets_dropped != nan AND $this > 0) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
every: 1m
warn: $this >= 0.1
crit: $this >= 2
delay: down 1h multiplier 1.5 max 2h
info: the ratio of inbound dropped packets vs the total number of received packets of the network interface, during the last 10 minutes
to: silent
I changed it last night -rw-r–r-- 1 root root 6077 Dec 18 20:50 net.conf After the nightly update which just ran the ‘to’ line is set back to sysadmin. Shouldn’t my settings stay the same?
`template: inbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
families: *
lookup: sum -10m unaligned absolute of received
calc: (($inbound_packets_dropped != nan AND $this > 0) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
every: 1m
warn: $this >= 0.1
crit: $this >= 2
delay: down 1h multiplier 1.5 max 2h
info: the ratio of inbound dropped packets vs the total number of received packets of the network interface, during the last 10 minutes
to: sysadmin
-rw-r–r-- 1 root root 6085 Dec 19 08:01 net.conf
I see no reason why every day I have to go back in and change each template I’d made changes to.
In addition to this I changed the net.conf file in both /usr/lib/netdata/conf.d/health.d and /etc/netdata/orig/health.d like this:
template: inbound_packets_dropped
on: net.drops
os: linux
hosts: *
families: *
lookup: sum -10m unaligned absolute of inbound
units: packets
every: 1m
warn: $this >= 5
delay: down 1h multiplier 1.5 max 2h
info: interface inbound dropped packets in the last 10 minutes
to: silent
template: inbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
families: *
lookup: sum -10m unaligned absolute of received
calc: (($inbound_packets_dropped != nan AND $this > 0) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
every: 1m
warn: $this >= 0.1
crit: $this >= 2
delay: down 1h multiplier 1.5 max 2h
info: the ratio of inbound dropped packets vs the total number of received packets of the network interface, during the last 10 minutes
to: silent
The same setting in both folders. I’m still receiving notifications of inbound packets dropped ratio and inbound packets dropped.