summaryrefslogtreecommitdiffstats
path: root/health/health.d/net.conf
diff options
context:
space:
mode:
Diffstat (limited to 'health/health.d/net.conf')
-rw-r--r--health/health.d/net.conf32
1 files changed, 30 insertions, 2 deletions
diff --git a/health/health.d/net.conf b/health/health.d/net.conf
index 29556befc8..21661c9615 100644
--- a/health/health.d/net.conf
+++ b/health/health.d/net.conf
@@ -76,7 +76,7 @@ template: inbound_packets_dropped_ratio
on: net.packets
os: linux
hosts: *
-families: *
+families: !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: *
+families: !wl* *
lookup: sum -10m unaligned absolute of sent
calc: (($outbound_packets_dropped != nan AND $this > 1000) ? ($outbound_packets_dropped * 100 / $this) : (0))
units: %
@@ -100,6 +100,34 @@ families: *
info: the ratio of outbound dropped packets vs the total number of sent packets of the network interface, during the last 10 minutes
to: sysadmin
+template: wifi_inbound_packets_dropped_ratio
+ on: net.packets
+ os: linux
+ hosts: *
+families: wl*
+ lookup: sum -10m unaligned absolute of received
+ calc: (($inbound_packets_dropped != nan AND $this > 1000) ? ($inbound_packets_dropped * 100 / $this) : (0))
+ units: %
+ every: 1m
+ warn: $this >= 10
+ delay: up 1m 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
+
+template: wifi_outbound_packets_dropped_ratio
+ on: net.packets
+ os: linux
+ hosts: *
+families: wl*
+ lookup: sum -10m unaligned absolute of sent
+ calc: (($outbound_packets_dropped != nan AND $this > 1000) ? ($outbound_packets_dropped * 100 / $this) : (0))
+ units: %
+ every: 1m
+ warn: $this >= 10
+ delay: up 1m down 1h multiplier 1.5 max 2h
+ info: the ratio of outbound dropped packets vs the total number of sent packets of the network interface, during the last 10 minutes
+ to: sysadmin
+
# -----------------------------------------------------------------------------
# interface errors