gatus/core/alert.go

15 lines
265 B
Go
Raw Normal View History

2020-08-20 01:41:01 +02:00
package core
type Alert struct {
Type AlertType `yaml:"type"`
Enabled bool `yaml:"enabled"`
Threshold int `yaml:"threshold"`
Description string `yaml:"description"`
}
type AlertType string
const (
SlackAlert AlertType = "slack"
)