Documentation ¶
Index ¶
- type Config
- type Diagnostic
- 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, ctx ...keyvalue.T) 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 Diagnostic ¶ added in v1.4.0
type Diagnostic interface { WithContext(ctx ...keyvalue.T) Diagnostic Error(msg string, err error) }
type HandlerConfig ¶ added in v1.2.0
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(c Config, d Diagnostic) *Service
func (*Service) StateChangesOnly ¶ added in v0.11.0
func (*Service) TestOptions ¶ added in v1.1.0
func (s *Service) TestOptions() interface{}
Click to show internal directories.
Click to hide internal directories.