2026-05-29 15:48:11 +00:00
|
|
|
package health
|
|
|
|
|
|
|
|
|
|
// ComponentStatus is the health state of a single component in the JSON response.
|
|
|
|
|
type ComponentStatus struct {
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
Latency string `json:"latency,omitempty"`
|
|
|
|
|
Error string `json:"error,omitempty"`
|
|
|
|
|
}
|