From d9eaf42f3646baec5f97b06dcebb4106be0c7450 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Mon, 23 Mar 2026 22:51:33 +0200 Subject: [PATCH] exclude iDRAC from HighServiceLatency alert iDRAC Redfish exporter is inherently slow, causing noisy alerts. --- .../monitoring/modules/monitoring/prometheus_chart_values.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/monitoring/modules/monitoring/prometheus_chart_values.tpl b/stacks/monitoring/modules/monitoring/prometheus_chart_values.tpl index 7a7e9edb..15c2fcff 100755 --- a/stacks/monitoring/modules/monitoring/prometheus_chart_values.tpl +++ b/stacks/monitoring/modules/monitoring/prometheus_chart_values.tpl @@ -1041,7 +1041,7 @@ serverFiles: - alert: HighServiceLatency expr: | histogram_quantile(0.99, - sum(rate(traefik_service_request_duration_seconds_bucket[5m])) by (service, le) + sum(rate(traefik_service_request_duration_seconds_bucket{service!~".*idrac.*"}[5m])) by (service, le) ) > 10 and on() (time() - process_start_time_seconds{job="prometheus"}) > 900 for: 5m