From 3dc844aa955d19001c1dd681b761bb63ebb20b91 Mon Sep 17 00:00:00 2001 From: Maarten de Waard <maarten@greenhost.nl> Date: Fri, 21 Jan 2022 12:22:36 +0100 Subject: [PATCH] do not ignore KubeProxyDown alert because it should not fire with KubeProxy monitoring turned off --- test/pytest/test_prometheus.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/pytest/test_prometheus.py b/test/pytest/test_prometheus.py index 542bad0b0..7e90f0d87 100755 --- a/test/pytest/test_prometheus.py +++ b/test/pytest/test_prometheus.py @@ -21,8 +21,7 @@ def ignore_alert(alert): return True # Ignore issues fom high load during installation phase - # KubeProxyDown: https://open.greenhost.net/stackspin/stackspin/-/issues/1105 - if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising|KubeProxyDown)", + if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising)", alert["labels"]["alertname"]): return True # Ignore nextcloud cron jobs (https://open.greenhost.net/stackspin/stackspin/-/issues/984) -- GitLab