* feat(alerting): added incident.io provider alerting. * Tests: added incident.io provider unit tests. * Documentation: added incidentio documentation. * Refactor: Changed documentation + types to an alphabetical order. * Refactor: change wrong comment. Co-authored-by: Maksim Zhylinski <maksim@zhylinski.me> * Update README.md Co-authored-by: Maksim Zhylinski <maksim@zhylinski.me> * Update alerting/provider/incidentio/incident_io.go Co-authored-by: Julien Limoges <limoges@users.noreply.github.com> * Update alerting/provider/incidentio/incident_io.go Co-authored-by: Julien Limoges <limoges@users.noreply.github.com> * Update alerting/provider/incidentio/incident_io.go Co-authored-by: Julien Limoges <limoges@users.noreply.github.com> * Update alerting/provider/incidentio/incident_io.go Co-authored-by: Julien Limoges <limoges@users.noreply.github.com> * Refactor: changed alertSourceID to url. * Refactor: changed documentation. * Refactor: refactored tests, removed status from config. * Readme: updated docs. * Refactor: removed duplication key in favor of ResolveKey. * Refactor: change variable format. * Feat + Test: added support for passing metadata and source url, added resolved-with-metadata-source-url test case. * Refactor: chaned variable naming * Update alerting/config.go * Update README.md * Update README.md * Update README.md * Apply suggestions from code review * Refactor: sort var by abc --------- Co-authored-by: Maksim Zhylinski <maksim@zhylinski.me> Co-authored-by: Julien Limoges <limoges@users.noreply.github.com> Co-authored-by: TwiN <twin@linux.com>
124 lines
5.3 KiB
Go
124 lines
5.3 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/incidentio"
|
|
"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)
|
|
_ AlertProvider = (*incidentio.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[incidentio.Config] = (*incidentio.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)
|
|
)
|