Documentation ¶
Index ¶
- type Config
- type Diagnostic
- type Service
- func (s *Service) Alert(title, text string) error
- func (s *Service) Close() error
- func (s *Service) Handler(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 ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Whether Talk integration is enabled. Enabled bool `toml:"enabled" override:"enabled"` // The Talk webhook URL, can be obtained by adding Incoming Webhook integration. URL string `toml:"url" override:"url,redact"` // The default authorName, can be overridden per alert. AuthorName string `toml:"author_name" override:"author_name"` }
type Diagnostic ¶ added in v1.4.0
type Diagnostic interface { WithContext(ctx ...keyvalue.T) Diagnostic Error(msg string, err error) }
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(c Config, d Diagnostic) *Service
func (*Service) TestOptions ¶ added in v1.1.0
func (s *Service) TestOptions() interface{}
Click to show internal directories.
Click to hide internal directories.