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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user