add 1m delay for tcp reset alarms (#13761)
Ilya Mashchenko committed
Oct 4, 2022 at 18:50 UTC
70c40ef0f133b6fe13d1b699fd615edeaa800f44
1 file changed
+2
-2
health/health.d/tcp_resets.conf
+2
-2
@@ -26,7 +26,7 @@ component: Network
26
lookup: average -10s unaligned absolute of OutRsts
27
units: tcp resets/s
28
every: 10s
29
- warn: $this > ((($1m_ipv4_tcp_resets_sent < 5)?(5):($1m_ipv4_tcp_resets_sent)) * (($status >= $WARNING) ? (1) : (10)))
29
+ warn: $netdata.uptime.uptime > (1 * 60) AND $this > ((($1m_ipv4_tcp_resets_sent < 5)?(5):($1m_ipv4_tcp_resets_sent)) * (($status >= $WARNING) ? (1) : (10)))
30
delay: up 20s down 60m multiplier 1.2 max 2h
31
options: no-clear-notification
32
info: average number of sent TCP RESETS over the last 10 seconds. \
@@ -60,7 +60,7 @@ component: Network
60
lookup: average -10s unaligned absolute of AttemptFails
61
units: tcp resets/s
62
every: 10s
63
- warn: $this > ((($1m_ipv4_tcp_resets_received < 5)?(5):($1m_ipv4_tcp_resets_received)) * (($status >= $WARNING) ? (1) : (10)))
63
+ warn: $netdata.uptime.uptime > (1 * 60) AND $this > ((($1m_ipv4_tcp_resets_received < 5)?(5):($1m_ipv4_tcp_resets_received)) * (($status >= $WARNING) ? (1) : (10)))
64
delay: up 20s down 60m multiplier 1.2 max 2h
65
options: no-clear-notification
66
info: average number of received TCP RESETS over the last 10 seconds. \