From d9ab004479e387ce34ef7a20f2295efe3e9be187 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sun, 22 Mar 2026 14:05:25 -0700 Subject: [PATCH] C2(deploy-infra-alerting): impl fix Grafana probe port (80 not 3000) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Grafana's k8s Service maps port 80 → container port 3000. The blackbox probe was targeting port 3000 directly on the Service ClusterIP, which doesn't work — connection refused. Co-Authored-By: Claude Opus 4.6 (1M context) --- argocd/manifests/alloy-k8s/config.alloy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argocd/manifests/alloy-k8s/config.alloy b/argocd/manifests/alloy-k8s/config.alloy index 667f735..a716ddc 100644 --- a/argocd/manifests/alloy-k8s/config.alloy +++ b/argocd/manifests/alloy-k8s/config.alloy @@ -184,7 +184,7 @@ prometheus.exporter.blackbox "services" { target { name = "grafana" - address = "http://grafana.monitoring.svc.cluster.local:3000/api/health" + address = "http://grafana.monitoring.svc.cluster.local:80/api/health" module = "http_2xx" }