Documentation ¶
Overview ¶
Package health implements an HTTP handler that responds to health checks.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Healther ¶
type Healther interface { // Health returns a boolean indicating the health status of a plugin. // False indicates unhealthy. Health() bool }
Healther interface needs to be implemented by each plugin willing to provide healthhceck information to the health plugin. As a second step the plugin needs to registered against the health plugin, by addding it to healthers map. Note this method should return quickly, i.e. just checking a boolean status, as it is called every second from the health plugin.
Click to show internal directories.
Click to hide internal directories.