Documentation ¶
Index ¶
- type AlertProvider
- func (provider *AlertProvider) GetAlertStatePlaceholderValue(resolved bool) string
- func (provider AlertProvider) GetDefaultAlert() *alert.Alert
- func (provider *AlertProvider) IsValid() bool
- func (provider *AlertProvider) Send(endpoint *core.Endpoint, alert *alert.Alert, result *core.Result, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlertProvider ¶
type AlertProvider struct { URL string `yaml:"url"` Method string `yaml:"method,omitempty"` Body string `yaml:"body,omitempty"` Headers map[string]string `yaml:"headers,omitempty"` Placeholders map[string]map[string]string `yaml:"placeholders,omitempty"` // ClientConfig is the configuration of the client used to communicate with the provider's target ClientConfig *client.Config `yaml:"client,omitempty"` // DefaultAlert is the default alert configuration to use for endpoints with an alert of the appropriate type DefaultAlert *alert.Alert `yaml:"default-alert,omitempty"` }
AlertProvider is the configuration necessary for sending an alert using a custom HTTP request Technically, all alert providers should be reachable using the custom alert provider
func (*AlertProvider) GetAlertStatePlaceholderValue ¶
func (provider *AlertProvider) GetAlertStatePlaceholderValue(resolved bool) string
GetAlertStatePlaceholderValue returns the Placeholder value for ALERT_TRIGGERED_OR_RESOLVED if configured
func (AlertProvider) GetDefaultAlert ¶
func (provider AlertProvider) GetDefaultAlert() *alert.Alert
GetDefaultAlert returns the provider's default alert configuration
func (*AlertProvider) IsValid ¶
func (provider *AlertProvider) IsValid() bool
IsValid returns whether the provider's configuration is valid
Click to show internal directories.
Click to hide internal directories.