From a992d4b88faebde694e20dc592fe809bba16dc21 Mon Sep 17 00:00:00 2001 From: Jerome Tabiri Date: Wed, 10 Jun 2026 19:27:50 -0400 Subject: [PATCH] feat(nginx): Phase 1 - Add /metrics/circuit-breaker proxy route - Added Nginx location block for circuit breaker metrics endpoint - Enables visibility into which GPUs degrade most often Signed-off-by: Mumuni --- nginx/nginx.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 974d59b..5b953c8 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -86,6 +86,13 @@ location /admin/ { proxy_pass http://router_api; proxy_htt proxy_set_header Host $host; } + # Circuit Breaker metrics (Phase 1) + location /metrics/circuit-breaker { + proxy_pass http://router_api/metrics/circuit-breaker; + proxy_http_version 1.1; + proxy_set_header Host $host; + } + location /health { proxy_pass http://router_api/health; proxy_http_version 1.1;