2020-09-19 22:22:12 +02:00
|
|
|
package alerting
|
|
|
|
|
2020-09-19 22:29:08 +02:00
|
|
|
import (
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/custom"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/pagerduty"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/slack"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/twilio"
|
|
|
|
)
|
|
|
|
|
2020-09-19 22:22:12 +02:00
|
|
|
type Config struct {
|
2020-09-19 22:29:08 +02:00
|
|
|
Slack *slack.AlertProvider `yaml:"slack"`
|
|
|
|
PagerDuty *pagerduty.AlertProvider `yaml:"pagerduty"`
|
|
|
|
Twilio *twilio.AlertProvider `yaml:"twilio"`
|
|
|
|
Custom *custom.AlertProvider `yaml:"custom"`
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|