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 <mumuni@sysloggh.com>
This commit is contained in:
2026-06-10 19:27:50 -04:00
parent c3dfe62cec
commit a992d4b88f
+7
View File
@@ -86,6 +86,13 @@ location /admin/ { proxy_pass http://router_api; proxy_htt
proxy_set_header Host $host; 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 { location /health {
proxy_pass http://router_api/health; proxy_pass http://router_api/health;
proxy_http_version 1.1; proxy_http_version 1.1;