Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type State ¶
type State string
State refers the the current state of a given check.
const ( // Unknown state is when a check cannot be evaluated. Unknown State = "unknown" // Outage state is when a check fails and is unhealthy. Outage State = "outage" // Major state is when a check fails, but it has time before it's critical issue. Major State = "major" // Minor state is when a check fails, but does not impact the over all behavior of the system. Minor State = "minor" // OK state is when the check is operating as expected. OK State = "ok" )
Click to show internal directories.
Click to hide internal directories.