From 6c0a5607a96c883b4ae3486f141b35dbee05fb9e Mon Sep 17 00:00:00 2001 From: Seunghun Lee Date: Mon, 10 Nov 2025 14:56:22 +0000 Subject: [PATCH] Add ElasticsearchDiskSpaceLow to ignored alerts As AIO volumes are small, disk usage can be more than 80% --- stackhpc_cloud_tests/monitoring/test_prometheus.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stackhpc_cloud_tests/monitoring/test_prometheus.py b/stackhpc_cloud_tests/monitoring/test_prometheus.py index ea93f22..8a1a160 100644 --- a/stackhpc_cloud_tests/monitoring/test_prometheus.py +++ b/stackhpc_cloud_tests/monitoring/test_prometheus.py @@ -63,6 +63,7 @@ def test_prometheus_alerts_inactive(prom): aio_alerts_to_ignore = [ # We know our volumes are small. { "alertname": "StorageFillingUp", "instance": "controller0" }, + { "alertname": "ElasticsearchDiskSpaceLow", "instance": "controller0" }, # This is probably due to storage space.. { "alertname": "ElasticsearchClusterYellow", "instance": "controller0" }, # ..or because we're running in a single instance and it wants to be clustered across multiple nodes.