summaryrefslogtreecommitdiffstats
path: root/health
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-03-18 22:48:07 +0300
committerGitHub <noreply@github.com>2021-03-18 22:48:07 +0300
commit71343240bc67efc82abfc5136831c6831054f762 (patch)
treec6c25b3670e628224de697cbc63bde8f0794dd19 /health
parentecf5bab8a2b004476ffd6bc5dccf765f365d2c54 (diff)
health: exclude cgroups net ifaces from packets dropped alarms (#10806)
Diffstat (limited to 'health')
-rw-r--r--health/health.d/net.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/health/health.d/net.conf b/health/health.d/net.conf
index 21661c9615..a5d89ea5ef 100644
--- a/health/health.d/net.conf
+++ b/health/health.d/net.conf
@@ -56,7 +56,7 @@ template: inbound_packets_dropped
on: net.drops
os: linux
hosts: *
-families: *
+families: !net* *
lookup: sum -10m unaligned absolute of inbound
units: packets
every: 1m
@@ -66,7 +66,7 @@ template: outbound_packets_dropped
on: net.drops
os: linux
hosts: *
-families: *
+families: !net* *
lookup: sum -10m unaligned absolute of outbound
units: packets
every: 1m
@@ -76,7 +76,7 @@ template: inbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
-families: !wl* *
+families: !net* !wl* *
lookup: sum -10m unaligned absolute of received
calc: (($inbound_packets_dropped != nan AND $this > 1000) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
@@ -90,7 +90,7 @@ template: outbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
-families: !wl* *
+families: !net* !wl* *
lookup: sum -10m unaligned absolute of sent
calc: (($outbound_packets_dropped != nan AND $this > 1000) ? ($outbound_packets_dropped * 100 / $this) : (0))
units: %