{{ overall() === 'healthy' ? 'All Systems Operational' : overall() === 'degraded' ? 'Degraded Service' : 'Service Unavailable' }}

{{ overall() === 'healthy' ? 'All health probes are passing' : overall() === 'degraded' ? 'Some health probes are failing' : 'Backend may be down' }}

@for (probe of probes(); track probe.name) {
{{ probe.name }} {{ probe.status | uppercase }}

{{ probe.message }}

}