Documentation ¶
Index ¶
- Constants
- type Config
- type Diagnostic
- type HandlerConfig
- type Service
- func (s *Service) Alert(teams []string, recipients []string, recoveryAction string, level alert.Level, ...) error
- func (s *Service) Close() error
- func (s *Service) Global() bool
- func (s *Service) Handler(c HandlerConfig, ctx ...keyvalue.T) 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 DefaultOpsGenieAPIURL = "https://api.opsgenie.com/v2/alerts"
View Source
const DefaultOpsGenieRecoveryAction = "notes"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Whether to enable OpsGenie integration. Enabled bool `toml:"enabled" override:"enabled"` // The OpsGenie API key. APIKey string `toml:"api-key" override:"api-key,redact"` // The default Teams, can be overridden per alert. Teams []string `toml:"teams" override:"teams"` // The default Teams, can be overridden per alert. Recipients []string `toml:"recipients" override:"recipients"` // The OpsGenie API URL, should not need to be changed. URL string `toml:"url" override:"url"` // The OpsGenie Recovery action, may be one of: // * notes -- add note on recovery // * close -- close alert on recovery RecoveryAction string `toml:"recovery_action" override:"recovery_action"` // Whether every alert should automatically go to OpsGenie. Global bool `toml:"global" override:"global"` // Whether to use event details as OpsGenie alert description. Details bool `toml:"details" override:"details"` }
type Diagnostic ¶
type Diagnostic interface { WithContext(ctx ...keyvalue.T) Diagnostic Error(msg string, err error) }
type HandlerConfig ¶
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(c Config, d Diagnostic) *Service
func (*Service) TestOptions ¶
func (s *Service) TestOptions() interface{}
Click to show internal directories.
Click to hide internal directories.