Documentation ¶
Index ¶
- type Config
- type HandlerConfig
- type Service
- func (s *Service) Alert(room, token, message string, level alert.Level) 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) StateChangesOnly() bool
- func (s *Service) Test(options interface{}) error
- func (s *Service) TestOptions() interface{}
- func (s *Service) Update(newConfig []interface{}) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Whether HipChat integration is enabled. Enabled bool `toml:"enabled" override:"enabled"` // The HipChat API URL. URL string `toml:"url" override:"url"` // The authentication token for this notification, can be overridden per alert. // https://www.hipchat.com/docs/apiv2/auth for info on obtaining a token. Token string `toml:"token" override:"token,redact"` // The default room, can be overridden per alert. Room string `toml:"room" override:"room"` // Whether all alerts should automatically post to HipChat Global bool `toml:"global" override:"global"` // Whether all alerts should automatically use stateChangesOnly mode. // Only applies if global is also set. StateChangesOnly bool `toml:"state-changes-only" override:"state-changes-only"` }
type HandlerConfig ¶ added in v1.2.0
Click to show internal directories.
Click to hide internal directories.