Enum HealthStatus
- Namespace
- Steeltoe.Common.HealthChecks
- Assembly
- Steeltoe.Common.dll
Represents the reported status of a health check.
[JsonConverter(typeof(SnakeCaseAllCapsEnumMemberJsonConverter))]
public enum HealthStatus
- Extension Methods
Fields
Down = 4
Indicates that the component is unhealthy, or an unhandled exception was thrown while executing the health check.
OutOfService = 3
Indicates that the component is under maintenance (planned downtime).
Unknown = 0
Indicates that the component is in an unknown state.
Up = 1
Indicates that the component is healthy.
Warning = 2
Indicates that the component is in a warning state.