Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion stackhpc_cloud_tests/monitoring/test_prometheus.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down