9 lines
247 B
Go
9 lines
247 B
Go
|
|
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"`
|
||
|
|
}
|