32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package alerting
 | |
| 
 | |
| import (
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/custom"
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/mattermost"
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/messagebird"
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/pagerduty"
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/slack"
 | |
| 	"github.com/TwinProduction/gatus/alerting/provider/twilio"
 | |
| )
 | |
| 
 | |
| // Config is the configuration for alerting providers
 | |
| type Config struct {
 | |
| 	// Slack is the configuration for the slack alerting provider
 | |
| 	Slack *slack.AlertProvider `yaml:"slack"`
 | |
| 
 | |
| 	// Mattermost is the configuration for the mattermost alerting provider
 | |
| 	Mattermost *mattermost.AlertProvider `yaml:"mattermost"`
 | |
| 
 | |
| 	// Messagebird is the configuration for the messagebird alerting provider
 | |
| 	Messagebird *messagebird.AlertProvider `yaml:"messagebird"`
 | |
| 
 | |
| 	// Pagerduty is the configuration for the pagerduty alerting provider
 | |
| 	PagerDuty *pagerduty.AlertProvider `yaml:"pagerduty"`
 | |
| 
 | |
| 	// Twilio is the configuration for the twilio alerting provider
 | |
| 	Twilio *twilio.AlertProvider `yaml:"twilio"`
 | |
| 
 | |
| 	// Custom is the configuration for the custom alerting provider
 | |
| 	Custom *custom.AlertProvider `yaml:"custom"`
 | |
| }
 |