From f78d382d62507e9349eee32730ad80f0b35ed0ff Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Tue, 24 Mar 2026 13:08:12 -0700 Subject: [PATCH] fix(infra): add Azurite + Loki to health check script - Azurite blob storage (:10000) was missing from check-health.sh - Loki log aggregation (:3100/ready) was missing from check-health.sh - Now covers all 30 compose services + Gitea + Ollama = 32 endpoints --- docs/devops/single_azure_vm/setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/devops/single_azure_vm/setup.sh b/docs/devops/single_azure_vm/setup.sh index 35c7981f..571ebabc 100755 --- a/docs/devops/single_azure_vm/setup.sh +++ b/docs/devops/single_azure_vm/setup.sh @@ -737,7 +737,9 @@ echo "═══ Infrastructure ═══" check "Gitea (npm)" "http://localhost:3300/api/v1/version" check "Ollama (LLM)" "http://localhost:11434/api/version" check "Cosmos Explorer" "http://localhost:1234" +check "Azurite (Blob)" "http://localhost:10000/devstoreaccount1?comp=list" check "Mailpit" "http://localhost:8025" +check "Loki" "http://localhost:3100/ready" check "Grafana" "http://localhost:3000/api/health" check "Traefik" "http://localhost:8080/api/overview"