Documentation
¶
Index ¶
Constants ¶
View Source
const ( StatusPlaceholder = "[STATUS]" IPPlaceHolder = "[IP]" ResponseTimePlaceHolder = "[RESPONSE_TIME]" BodyPlaceHolder = "[BODY]" LengthFunctionPrefix = "len(" FunctionSuffix = ")" InvalidConditionElementSuffix = "(INVALID)" )
Variables ¶
View Source
var ( ErrNoCondition = errors.New("you must specify at least one condition per service") ErrNoUrl = errors.New("you must specify an url for each service") )
Functions ¶
This section is empty.
Types ¶
type Alert ¶ added in v0.1.0
type Alert struct { // Type of alert Type AlertType `yaml:"type"` // Enabled defines whether or not the alert is enabled Enabled bool `yaml:"enabled"` // FailureThreshold is the number of failures in a row needed before triggering the alert FailureThreshold int `yaml:"failure-threshold"` // Description of the alert. Will be included in the alert sent. Description string `yaml:"description"` // SendOnResolved defines whether to send a second notification when the issue has been resolved SendOnResolved bool `yaml:"send-on-resolved"` // SuccessThreshold defines how many successful executions must happen in a row before an ongoing incident is marked as resolved SuccessThreshold int `yaml:"success-threshold"` // ResolveKey is an optional field that is used by some providers (i.e. PagerDuty's dedup_key) to resolve // ongoing/triggered incidents ResolveKey string // Triggered is used to determine whether an alert has been triggered. When an alert is resolved, this value // should be set back to false. It is used to prevent the same alert from going out twice. Triggered bool }
Alert is the service's alert configuration
type ConditionResult ¶
type HealthStatus ¶
type Result ¶
type Result struct { HttpStatus int `json:"status"` Body []byte `json:"-"` Hostname string `json:"hostname"` Ip string `json:"-"` Duration time.Duration `json:"duration"` Errors []string `json:"errors"` ConditionResults []*ConditionResult `json:"condition-results"` Success bool `json:"success"` Timestamp time.Time `json:"timestamp"` }
type Service ¶
type Service struct { // Name of the service. Can be anything. Name string `yaml:"name"` // URL to send the request to Url string `yaml:"url"` // Method of the request made to the url of the service Method string `yaml:"method,omitempty"` // Body of the request Body string `yaml:"body,omitempty"` // GraphQL is whether to wrap the body in a query param ({"query":"$body"}) GraphQL bool `yaml:"graphql,omitempty"` // Headers of the request Headers map[string]string `yaml:"headers,omitempty"` // Interval is the duration to wait between every status check Interval time.Duration `yaml:"interval,omitempty"` // Conditions used to determine the health of the service Conditions []*Condition `yaml:"conditions"` // Alerts is the alerting configuration for the service in case of failure Alerts []*Alert `yaml:"alerts"` NumberOfFailuresInARow int NumberOfSuccessesInARow int }
Service is the configuration of a monitored endpoint
func (*Service) EvaluateConditions ¶
func (*Service) GetAlertsTriggered ¶ added in v0.1.0
Click to show internal directories.
Click to hide internal directories.