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"
|
2021-03-05 03:26:17 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/discord"
|
2020-11-23 22:20:06 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/mattermost"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/messagebird"
|
2020-09-19 22:29:08 +02:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/pagerduty"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/slack"
|
2021-03-31 01:38:34 +02:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/telegram"
|
2020-09-19 22:29:08 +02:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/twilio"
|
|
|
|
)
|
|
|
|
|
2020-10-23 22:12:53 +02:00
|
|
|
// Config is the configuration for alerting providers
|
2020-09-19 22:22:12 +02:00
|
|
|
type Config struct {
|
2021-03-05 03:26:17 +01:00
|
|
|
// Custom is the configuration for the custom alerting provider
|
|
|
|
Custom *custom.AlertProvider `yaml:"custom"`
|
|
|
|
|
|
|
|
// Discord is the configuration for the discord alerting provider
|
|
|
|
Discord *discord.AlertProvider `yaml:"discord"`
|
2020-10-23 22:12:53 +02:00
|
|
|
|
2020-11-14 15:55:37 +01:00
|
|
|
// Mattermost is the configuration for the mattermost alerting provider
|
|
|
|
Mattermost *mattermost.AlertProvider `yaml:"mattermost"`
|
|
|
|
|
2020-11-23 22:20:06 +01:00
|
|
|
// Messagebird is the configuration for the messagebird alerting provider
|
|
|
|
Messagebird *messagebird.AlertProvider `yaml:"messagebird"`
|
|
|
|
|
2021-03-05 03:26:17 +01:00
|
|
|
// PagerDuty is the configuration for the pagerduty alerting provider
|
2020-09-19 22:29:08 +02:00
|
|
|
PagerDuty *pagerduty.AlertProvider `yaml:"pagerduty"`
|
2020-10-23 22:12:53 +02:00
|
|
|
|
2021-03-05 03:26:17 +01:00
|
|
|
// Slack is the configuration for the slack alerting provider
|
|
|
|
Slack *slack.AlertProvider `yaml:"slack"`
|
|
|
|
|
2021-03-31 01:38:34 +02:00
|
|
|
// Telegram is the configuration for the telegram alerting provider
|
|
|
|
Telegram *telegram.AlertProvider `yaml:"telegram"`
|
|
|
|
|
2020-10-23 22:12:53 +02:00
|
|
|
// Twilio is the configuration for the twilio alerting provider
|
|
|
|
Twilio *twilio.AlertProvider `yaml:"twilio"`
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|