mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
40 lines
1.3 KiB
Go
40 lines
1.3 KiB
Go
package core
|
|
|
|
// Alert is the service's alert configuration
|
|
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
|
|
}
|
|
|
|
type AlertType string
|
|
|
|
const (
|
|
SlackAlert AlertType = "slack"
|
|
PagerDutyAlert AlertType = "pagerduty"
|
|
TwilioAlert AlertType = "twilio"
|
|
CustomAlert AlertType = "custom"
|
|
)
|