package health type Status string const ( StatusHealthy Status = "healthy" StatusUnhealthy Status = "unhealthy" StatusDegraded Status = "degraded" )