From edddfcc2722a388e83646009c9623f872bd65212 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Mon, 16 Mar 2026 03:42:50 +0100 Subject: [PATCH] fix: align OpenStack load balancer alert name with operating_status semantics The operating_status label uses ONLINE/OFFLINE/DEGRADED/ERROR values, not ACTIVE. Rename alert to "not online" and use the label in the description for clarity. --- _data/rules.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/rules.yml b/_data/rules.yml index cff63e4..ee5f2ac 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -3182,8 +3182,8 @@ groups: query: 'openstack_neutron_ports_no_ips > 0' severity: warning for: 5m - - name: OpenStack load balancer not active - description: "Load balancer {{ $labels.name }} ({{ $labels.id }}) is not in ACTIVE operating state" + - name: OpenStack load balancer not online + description: "Load balancer {{ $labels.name }} ({{ $labels.id }}) operating status is {{ $labels.operating_status }}" query: 'openstack_loadbalancer_loadbalancer_status{operating_status!="ONLINE"} > 0' severity: warning for: 5m