mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package pagerduty
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/custom"
|
|
"github.com/TwinProduction/gatus/core"
|
|
)
|
|
|
|
// AlertProvider is the configuration necessary for sending an alert using PagerDuty
|
|
type AlertProvider struct {
|
|
IntegrationKey string `yaml:"integration-key"`
|
|
}
|
|
|
|
// IsValid returns whether the provider's configuration is valid
|
|
func (provider *AlertProvider) IsValid() bool {
|
|
return len(provider.IntegrationKey) == 32
|
|
}
|
|
|
|
// ToCustomAlertProvider converts the provider into a custom.AlertProvider
|
|
//
|
|
// relevant: https://developer.pagerduty.com/docs/events-api-v2/trigger-events/
|
|
func (provider *AlertProvider) ToCustomAlertProvider(service *core.Service, alert *core.Alert, _ *core.Result, resolved bool) *custom.AlertProvider {
|
|
var message, eventAction, resolveKey string
|
|
if resolved {
|
|
message = fmt.Sprintf("RESOLVED: %s - %s", service.Name, alert.Description)
|
|
eventAction = "resolve"
|
|
resolveKey = alert.ResolveKey
|
|
} else {
|
|
message = fmt.Sprintf("TRIGGERED: %s - %s", service.Name, alert.Description)
|
|
eventAction = "trigger"
|
|
resolveKey = ""
|
|
}
|
|
return &custom.AlertProvider{
|
|
URL: "https://events.pagerduty.com/v2/enqueue",
|
|
Method: http.MethodPost,
|
|
Body: fmt.Sprintf(`{
|
|
"routing_key": "%s",
|
|
"dedup_key": "%s",
|
|
"event_action": "%s",
|
|
"payload": {
|
|
"summary": "%s",
|
|
"source": "%s",
|
|
"severity": "critical"
|
|
}
|
|
}`, provider.IntegrationKey, resolveKey, eventAction, message, service.Name),
|
|
Headers: map[string]string{
|
|
"Content-Type": "application/json",
|
|
},
|
|
}
|
|
}
|