mirror of
https://github.com/TwiN/gatus.git
synced 2025-01-07 22:49:55 +01:00
79c9f24c15
* feat(alerting): Implement alert-level provider overrides Fixes #96 * Fix tests * Add missing test cases for alerting providers * feat(alerting): Implement alert-level overrides on all providers * chore: Add config.yaml to .gitignore * fix typo in discord provider * test: Start fixing tests for alerting providers * test: Fix GitLab tests * Fix all tests * test: Improve coverage * test: Improve coverage * Rename override to provider-override * docs: Mention new provider-override config * test: Improve coverage * test: Improve coverage * chore: Rename Alert.OverrideAsBytes to Alert.ProviderOverrideAsBytes
121 lines
5.2 KiB
Go
121 lines
5.2 KiB
Go
package provider
|
|
|
|
import (
|
|
"github.com/TwiN/gatus/v5/alerting/alert"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/awsses"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/custom"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/discord"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/email"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/gitea"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/github"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/gitlab"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/googlechat"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/jetbrainsspace"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/matrix"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/mattermost"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/messagebird"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/ntfy"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/opsgenie"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/pagerduty"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/pushover"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/slack"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/teams"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/teamsworkflows"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/telegram"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/twilio"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/zulip"
|
|
"github.com/TwiN/gatus/v5/config/endpoint"
|
|
)
|
|
|
|
// AlertProvider is the interface that each provider should implement
|
|
type AlertProvider interface {
|
|
// Validate the provider's configuration
|
|
Validate() error
|
|
|
|
// Send an alert using the provider
|
|
Send(ep *endpoint.Endpoint, alert *alert.Alert, result *endpoint.Result, resolved bool) error
|
|
|
|
// GetDefaultAlert returns the provider's default alert configuration
|
|
GetDefaultAlert() *alert.Alert
|
|
|
|
// ValidateOverrides validates the alert's provider override and, if present, the group override
|
|
ValidateOverrides(group string, alert *alert.Alert) error
|
|
}
|
|
|
|
type Config[T any] interface {
|
|
Validate() error
|
|
Merge(override *T)
|
|
}
|
|
|
|
// MergeProviderDefaultAlertIntoEndpointAlert parses an Endpoint alert by using the provider's default alert as a baseline
|
|
func MergeProviderDefaultAlertIntoEndpointAlert(providerDefaultAlert, endpointAlert *alert.Alert) {
|
|
if providerDefaultAlert == nil || endpointAlert == nil {
|
|
return
|
|
}
|
|
if endpointAlert.Enabled == nil {
|
|
endpointAlert.Enabled = providerDefaultAlert.Enabled
|
|
}
|
|
if endpointAlert.SendOnResolved == nil {
|
|
endpointAlert.SendOnResolved = providerDefaultAlert.SendOnResolved
|
|
}
|
|
if endpointAlert.Description == nil {
|
|
endpointAlert.Description = providerDefaultAlert.Description
|
|
}
|
|
if endpointAlert.FailureThreshold == 0 {
|
|
endpointAlert.FailureThreshold = providerDefaultAlert.FailureThreshold
|
|
}
|
|
if endpointAlert.SuccessThreshold == 0 {
|
|
endpointAlert.SuccessThreshold = providerDefaultAlert.SuccessThreshold
|
|
}
|
|
}
|
|
|
|
var (
|
|
// Validate provider interface implementation on compile
|
|
_ AlertProvider = (*awsses.AlertProvider)(nil)
|
|
_ AlertProvider = (*custom.AlertProvider)(nil)
|
|
_ AlertProvider = (*discord.AlertProvider)(nil)
|
|
_ AlertProvider = (*email.AlertProvider)(nil)
|
|
_ AlertProvider = (*gitea.AlertProvider)(nil)
|
|
_ AlertProvider = (*github.AlertProvider)(nil)
|
|
_ AlertProvider = (*gitlab.AlertProvider)(nil)
|
|
_ AlertProvider = (*googlechat.AlertProvider)(nil)
|
|
_ AlertProvider = (*jetbrainsspace.AlertProvider)(nil)
|
|
_ AlertProvider = (*matrix.AlertProvider)(nil)
|
|
_ AlertProvider = (*mattermost.AlertProvider)(nil)
|
|
_ AlertProvider = (*messagebird.AlertProvider)(nil)
|
|
_ AlertProvider = (*ntfy.AlertProvider)(nil)
|
|
_ AlertProvider = (*opsgenie.AlertProvider)(nil)
|
|
_ AlertProvider = (*pagerduty.AlertProvider)(nil)
|
|
_ AlertProvider = (*pushover.AlertProvider)(nil)
|
|
_ AlertProvider = (*slack.AlertProvider)(nil)
|
|
_ AlertProvider = (*teams.AlertProvider)(nil)
|
|
_ AlertProvider = (*teamsworkflows.AlertProvider)(nil)
|
|
_ AlertProvider = (*telegram.AlertProvider)(nil)
|
|
_ AlertProvider = (*twilio.AlertProvider)(nil)
|
|
_ AlertProvider = (*zulip.AlertProvider)(nil)
|
|
|
|
// Validate config interface implementation on compile
|
|
_ Config[awsses.Config] = (*awsses.Config)(nil)
|
|
_ Config[custom.Config] = (*custom.Config)(nil)
|
|
_ Config[discord.Config] = (*discord.Config)(nil)
|
|
_ Config[email.Config] = (*email.Config)(nil)
|
|
_ Config[gitea.Config] = (*gitea.Config)(nil)
|
|
_ Config[github.Config] = (*github.Config)(nil)
|
|
_ Config[gitlab.Config] = (*gitlab.Config)(nil)
|
|
_ Config[googlechat.Config] = (*googlechat.Config)(nil)
|
|
_ Config[jetbrainsspace.Config] = (*jetbrainsspace.Config)(nil)
|
|
_ Config[matrix.Config] = (*matrix.Config)(nil)
|
|
_ Config[mattermost.Config] = (*mattermost.Config)(nil)
|
|
_ Config[messagebird.Config] = (*messagebird.Config)(nil)
|
|
_ Config[ntfy.Config] = (*ntfy.Config)(nil)
|
|
_ Config[opsgenie.Config] = (*opsgenie.Config)(nil)
|
|
_ Config[pagerduty.Config] = (*pagerduty.Config)(nil)
|
|
_ Config[pushover.Config] = (*pushover.Config)(nil)
|
|
_ Config[slack.Config] = (*slack.Config)(nil)
|
|
_ Config[teams.Config] = (*teams.Config)(nil)
|
|
_ Config[teamsworkflows.Config] = (*teamsworkflows.Config)(nil)
|
|
_ Config[telegram.Config] = (*telegram.Config)(nil)
|
|
_ Config[twilio.Config] = (*twilio.Config)(nil)
|
|
_ Config[zulip.Config] = (*zulip.Config)(nil)
|
|
)
|