From af6305cc12a1984edc85b8ca95757917ce53e0dc Mon Sep 17 00:00:00 2001 From: Alex-Welsh Date: Thu, 10 Apr 2025 14:07:34 +0100 Subject: [PATCH] Add RabbitMQTooMuchReady to ignored alerts --- stackhpc_cloud_tests/monitoring/test_prometheus.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stackhpc_cloud_tests/monitoring/test_prometheus.py b/stackhpc_cloud_tests/monitoring/test_prometheus.py index 5868de5..ea93f22 100644 --- a/stackhpc_cloud_tests/monitoring/test_prometheus.py +++ b/stackhpc_cloud_tests/monitoring/test_prometheus.py @@ -72,7 +72,9 @@ def test_prometheus_alerts_inactive(prom): # It's only one node and expects three, see https://github.com/stackhpc/stackhpc-kayobe-config/pull/1579 { "alertname": "RabbitMQNodeDown" }, # This is probably because Tempest runs before pytest so the container has been recently stopped. - { "alertname": "ContainerKilled", "name": "tempest" } + { "alertname": "ContainerKilled", "name": "tempest" }, + # This alert sometimes triggers after periods of high activity e.g. a major upgrade + { "alertname": "RabbitMQTooMuchReady" }, ] def alert_is_ignored(alert, alerts_to_ignore):