summaryrefslogtreecommitdiffstats
path: root/health/health.d/net.conf
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-05-24 14:36:12 +0300
committerGitHub <noreply@github.com>2021-05-24 14:36:12 +0300
commitdfc4915ffb73b5b12ce50bcf6c1981afa9928f0a (patch)
treec62bae5b14fa741e48c6494393a2423a36ee2f54 /health/health.d/net.conf
parentca571a05f797009c87ae9b5819c1aab35c0aecb4 (diff)
health: make stocks alarms less sensitive (2) (#11153)
Diffstat (limited to 'health/health.d/net.conf')
-rw-r--r--health/health.d/net.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/health/health.d/net.conf b/health/health.d/net.conf
index 04219e163a..db480031ce 100644
--- a/health/health.d/net.conf
+++ b/health/health.d/net.conf
@@ -96,7 +96,7 @@ component: Network
hosts: *
families: !net* !wl* *
lookup: sum -10m unaligned absolute of received
- calc: (($inbound_packets_dropped != nan AND $this > 1000) ? ($inbound_packets_dropped * 100 / $this) : (0))
+ calc: (($inbound_packets_dropped != nan AND $this > 10000) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
every: 1m
warn: $this >= 2
@@ -130,7 +130,7 @@ component: Network
hosts: *
families: wl*
lookup: sum -10m unaligned absolute of received
- calc: (($inbound_packets_dropped != nan AND $this > 1000) ? ($inbound_packets_dropped * 100 / $this) : (0))
+ calc: (($inbound_packets_dropped != nan AND $this > 10000) ? ($inbound_packets_dropped * 100 / $this) : (0))
units: %
every: 1m
warn: $this >= 10