Enum HealthStatus
Health status enumeration compatible with standard health check conventions.
public enum HealthStatus
Fields
Degraded = 1Some resources are approaching limits but still functional. May indicate the need for scaling or investigation.
Healthy = 0All resources are operating within acceptable limits.
Unhealthy = 2One or more resources are at or beyond critical limits. Immediate attention required.
Remarks
This enum follows the ASP.NET Core HealthCheckStatus convention, allowing easy mapping
to Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus by consumers.