From 9220a734ad722b644f9e4374ff2fb5e58cacad5f Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Sun, 23 Nov 2025 21:23:03 +0100 Subject: [PATCH] Improve colour thresholds for certificate expiry The existing thresholds were: - expiry in more than 300 days: green - expiry between 140 and 300 days: yellow - expiry in less than 140 days: red These large values mean that Let's Encrypt certificates are always displayed in red because they are currently valid for 90 days. Adjust thresholds to be more useful: - expiry in more than 30 days: green - expiry between 7 and 30 days: yellow - expiry in less than 7 days: red --- etc/kayobe/kolla/config/grafana/grafana_home_dashboard.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/kayobe/kolla/config/grafana/grafana_home_dashboard.json b/etc/kayobe/kolla/config/grafana/grafana_home_dashboard.json index a9b44cf863..48dad8f427 100644 --- a/etc/kayobe/kolla/config/grafana/grafana_home_dashboard.json +++ b/etc/kayobe/kolla/config/grafana/grafana_home_dashboard.json @@ -2412,11 +2412,11 @@ }, { "color": "semi-dark-yellow", - "value": 12096000 + "value": 604800 }, { "color": "semi-dark-green", - "value": 25920000 + "value": 2592000 } ] }