From 723196fe64b8dc339020df12d18cfab2460a5e13 Mon Sep 17 00:00:00 2001 From: orbitalo Date: Wed, 1 Apr 2026 09:24:11 +0000 Subject: [PATCH] monitor: Grafana-Healthcheck auf /api/health umstellen Stabiler als die Root-URL; reduziert False Positives bei kurzzeitigen 5xx auf /. --- homelab-ai-bot/monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homelab-ai-bot/monitor.py b/homelab-ai-bot/monitor.py index 98af26aa..f8c79bdf 100644 --- a/homelab-ai-bot/monitor.py +++ b/homelab-ai-bot/monitor.py @@ -44,7 +44,7 @@ CRITICAL_CONTAINERS = [101, 109, 111, 112, 113, 115] HTTP_HEALTH_CHECKS = [ {"name": "WordPress (CT 101)", "url": "http://10.10.10.101/robots.txt"}, {"name": "Matomo (CT 113)", "url": "http://10.10.10.113"}, - {"name": "Grafana (CT 110)", "url": "http://10.10.10.110:3000"}, + {"name": "Grafana (CT 110)", "url": "http://10.10.10.110:3000/api/health"}, {"name": "Flugscanner-Agent (pve-pp-1)", "url": "http://100.126.26.46:5010/status", "retries": 5, "timeout": 25, "retry_delay": 6}, ]