Documentation ¶
Index ¶
Constants ¶
View Source
const DefaultPriority = 5
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlertProvider ¶
type AlertProvider struct { // ServerURL is the URL of the Gotify server ServerURL string `yaml:"server-url"` // Token is the token to use when sending a message to the Gotify server Token string `yaml:"token"` // Priority is the priority of the message Priority int `yaml:"priority,omitempty"` // Defaults to DefaultPriority // DefaultAlert is the default alert configuration to use for endpoints with an alert of the appropriate type DefaultAlert *alert.Alert `yaml:"default-alert,omitempty"` // Title is the title of the message that will be sent Title string `yaml:"title,omitempty"` }
AlertProvider is the configuration necessary for sending an alert using Gotify
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.