logs-analyzer/signoz/pkg/query-service/healthcheck/handler.go

13 lines
296 B
Go
Raw Permalink Normal View History

2024-09-02 22:47:30 +03:00
package healthcheck
const (
// Unavailable indicates the service is not able to handle requests
Unavailable Status = iota
// Ready indicates the service is ready to handle requests
Ready
// Broken indicates that the healthcheck itself is broken, not serving HTTP
Broken
)
type Status int