Documentation ¶
Index ¶
- type Config
- type Service
- func (s *Service) Alert(room, token, message string, level kapacitor.AlertLevel) error
- func (s *Service) Close() error
- func (s *Service) Global() bool
- 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 Service ¶
type Service struct {
// contains filtered or unexported fields
}
func (*Service) Alert ¶
func (s *Service) Alert(room, token, message string, level kapacitor.AlertLevel) error
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.