System Health

@for (item of healthSummary(); track item.label) {
{{ item.label }} {{ item.message }}
{{ item.status | uppercase }}
}

Circuit Breakers

@if (loading() && circuitBreakers().length === 0) {
} @else if (circuitBreakers().length === 0) {
No circuit breakers configured or endpoint unavailable.
} @else {
@for (cb of circuitBreakers(); track cb.name) {
{{ cb.name }} {{ stateLabel(cb.state) }}
Success {{ cb.success_count }}
Failures {{ cb.failure_count }}
Threshold {{ cb.threshold }}
@if (cb.last_failure_at) { }
}
}