summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilyam8 <ilya@netdata.cloud>2022-07-18 21:46:14 +0300
committerilyam8 <ilya@netdata.cloud>2022-07-18 21:46:14 +0300
commit36bc9d3d1c3888c7313323044305fb67b6194400 (patch)
tree01b56d157f409fcc4dd7377bd27249351d719c84
parent11067d57a3f072168881fd4a54570173f111d8b4 (diff)
fix k8s_cgroup_10s_received_packets_storm alarm
-rw-r--r--health/health.d/cgroups.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/health/health.d/cgroups.conf b/health/health.d/cgroups.conf
index 9f814f09d1..4bfe38b65a 100644
--- a/health/health.d/cgroups.conf
+++ b/health/health.d/cgroups.conf
@@ -130,7 +130,7 @@ component: Network
component: Network
hosts: *
lookup: average -10s unaligned of received
- calc: $this * 100 / (($1m_received_packets_rate < 1000)?(1000):($1m_received_packets_rate))
+ calc: $this * 100 / (($k8s_cgroup_10s_received_packets_storm < 1000)?(1000):($k8s_cgroup_10s_received_packets_storm))
every: 10s
units: %
warn: $this > (($status >= $WARNING)?(200):(5000))