Documentation ¶
Index ¶
- Constants
- type Config
- type HandlerConfig
- type Service
- func (s *Service) Alert(serviceKey, incidentKey, desc string, level alert.Level, details interface{}) error
- func (s *Service) Close() error
- func (s *Service) Global() bool
- func (s *Service) Handler(c HandlerConfig, l *log.Logger) alert.Handler
- func (s *Service) Open() error
- func (s *Service) Test(options interface{}) error
- func (s *Service) TestOptions() interface{}
- func (s *Service) Update(newConfig []interface{}) error
Constants ¶
View Source
const DefaultPagerDutyAPIURL = "https://events.pagerduty.com/generic/2010-04-15/create_event.json"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Whether PagerDuty integration is enabled. Enabled bool `toml:"enabled" override:"enabled"` // The PagerDuty API URL, should not need to be changed. URL string `toml:"url" override:"url"` // The PagerDuty service key. ServiceKey string `toml:"service-key" override:"service-key,redact"` // Whether every alert should automatically go to PagerDuty Global bool `toml:"global" override:"global"` }
type HandlerConfig ¶ added in v1.2.0
type HandlerConfig struct { // The service key to use for the alert. // Defaults to the value in the configuration if empty. ServiceKey string `mapstructure:"service-key"` }
Click to show internal directories.
Click to hide internal directories.