2020-09-19 22:29:08 +02:00
|
|
|
package pagerduty
|
2020-09-17 01:26:19 +02:00
|
|
|
|
2020-09-19 22:22:12 +02:00
|
|
|
import (
|
2021-12-03 03:05:17 +01:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2020-09-19 22:22:12 +02:00
|
|
|
"fmt"
|
2021-12-03 07:44:17 +01:00
|
|
|
"io"
|
2021-12-03 03:05:17 +01:00
|
|
|
"log"
|
2020-11-23 22:20:06 +01:00
|
|
|
"net/http"
|
|
|
|
|
2022-06-21 03:25:14 +02:00
|
|
|
"github.com/TwiN/gatus/v4/alerting/alert"
|
|
|
|
"github.com/TwiN/gatus/v4/client"
|
|
|
|
"github.com/TwiN/gatus/v4/core"
|
2020-09-19 22:22:12 +02:00
|
|
|
)
|
|
|
|
|
2021-07-30 00:13:37 +02:00
|
|
|
const (
|
|
|
|
restAPIURL = "https://events.pagerduty.com/v2/enqueue"
|
|
|
|
)
|
|
|
|
|
2020-09-26 21:15:50 +02:00
|
|
|
// AlertProvider is the configuration necessary for sending an alert using PagerDuty
|
2020-09-19 22:29:08 +02:00
|
|
|
type AlertProvider struct {
|
2020-09-19 22:22:12 +02:00
|
|
|
IntegrationKey string `yaml:"integration-key"`
|
2021-05-16 03:31:32 +02:00
|
|
|
|
2021-10-23 22:47:12 +02:00
|
|
|
// DefaultAlert is the default alert configuration to use for endpoints with an alert of the appropriate type
|
2021-12-03 03:05:17 +01:00
|
|
|
DefaultAlert *alert.Alert `yaml:"default-alert,omitempty"`
|
2021-10-06 02:01:36 +02:00
|
|
|
|
2021-10-06 02:40:44 +02:00
|
|
|
// Overrides is a list of Override that may be prioritized over the default configuration
|
2021-12-03 03:05:17 +01:00
|
|
|
Overrides []Override `yaml:"overrides,omitempty"`
|
2021-10-06 02:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Override is a case under which the default integration is overridden
|
|
|
|
type Override struct {
|
|
|
|
Group string `yaml:"group"`
|
|
|
|
IntegrationKey string `yaml:"integration-key"`
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|
|
|
|
|
2020-09-26 21:15:50 +02:00
|
|
|
// IsValid returns whether the provider's configuration is valid
|
2020-09-19 22:29:08 +02:00
|
|
|
func (provider *AlertProvider) IsValid() bool {
|
2021-10-06 02:01:36 +02:00
|
|
|
registeredGroups := make(map[string]bool)
|
2021-10-06 02:40:44 +02:00
|
|
|
if provider.Overrides != nil {
|
|
|
|
for _, override := range provider.Overrides {
|
|
|
|
if isAlreadyRegistered := registeredGroups[override.Group]; isAlreadyRegistered || override.Group == "" || len(override.IntegrationKey) != 32 {
|
2021-10-06 02:01:36 +02:00
|
|
|
return false
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
registeredGroups[override.Group] = true
|
2021-10-06 02:01:36 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
// Either the default integration key has the right length, or there are overrides who are properly configured.
|
|
|
|
return len(provider.IntegrationKey) == 32 || len(provider.Overrides) != 0
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|
|
|
|
|
2021-12-03 03:05:17 +01:00
|
|
|
// Send an alert using the provider
|
2020-10-23 22:12:53 +02:00
|
|
|
//
|
2021-12-03 03:05:17 +01:00
|
|
|
// Relevant: https://developer.pagerduty.com/docs/events-api-v2/trigger-events/
|
|
|
|
func (provider *AlertProvider) Send(endpoint *core.Endpoint, alert *alert.Alert, result *core.Result, resolved bool) error {
|
|
|
|
buffer := bytes.NewBuffer([]byte(provider.buildRequestBody(endpoint, alert, result, resolved)))
|
|
|
|
request, err := http.NewRequest(http.MethodPost, restAPIURL, buffer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
request.Header.Set("Content-Type", "application/json")
|
|
|
|
response, err := client.GetHTTPClient(nil).Do(request)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-20 21:16:27 +02:00
|
|
|
defer response.Body.Close()
|
2021-12-03 03:05:17 +01:00
|
|
|
if response.StatusCode > 399 {
|
2021-12-03 07:44:17 +01:00
|
|
|
body, _ := io.ReadAll(response.Body)
|
2021-12-03 03:05:17 +01:00
|
|
|
return fmt.Errorf("call to provider alert returned status code %d: %s", response.StatusCode, string(body))
|
|
|
|
}
|
|
|
|
if alert.IsSendingOnResolved() {
|
|
|
|
if resolved {
|
|
|
|
// The alert has been resolved and there's no error, so we can clear the alert's ResolveKey
|
|
|
|
alert.ResolveKey = ""
|
|
|
|
} else {
|
|
|
|
// We need to retrieve the resolve key from the response
|
2021-12-03 07:44:17 +01:00
|
|
|
body, err := io.ReadAll(response.Body)
|
2021-12-03 03:05:17 +01:00
|
|
|
var payload pagerDutyResponsePayload
|
|
|
|
if err = json.Unmarshal(body, &payload); err != nil {
|
2021-12-03 04:15:51 +01:00
|
|
|
// Silently fail. We don't want to create tons of alerts just because we failed to parse the body.
|
2021-12-03 03:05:17 +01:00
|
|
|
log.Printf("[pagerduty][Send] Ran into error unmarshaling pagerduty response: %s", err.Error())
|
|
|
|
} else {
|
|
|
|
alert.ResolveKey = payload.DedupKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// buildRequestBody builds the request body for the provider
|
|
|
|
func (provider *AlertProvider) buildRequestBody(endpoint *core.Endpoint, alert *alert.Alert, result *core.Result, resolved bool) string {
|
2020-09-26 20:23:43 +02:00
|
|
|
var message, eventAction, resolveKey string
|
|
|
|
if resolved {
|
2021-12-12 22:33:16 +01:00
|
|
|
message = fmt.Sprintf("RESOLVED: %s - %s", endpoint.DisplayName(), alert.GetDescription())
|
2020-09-26 20:23:43 +02:00
|
|
|
eventAction = "resolve"
|
|
|
|
resolveKey = alert.ResolveKey
|
|
|
|
} else {
|
2021-12-12 22:33:16 +01:00
|
|
|
message = fmt.Sprintf("TRIGGERED: %s - %s", endpoint.DisplayName(), alert.GetDescription())
|
2020-09-26 20:23:43 +02:00
|
|
|
eventAction = "trigger"
|
|
|
|
resolveKey = ""
|
|
|
|
}
|
2021-12-03 03:05:17 +01:00
|
|
|
return fmt.Sprintf(`{
|
2020-09-19 22:22:12 +02:00
|
|
|
"routing_key": "%s",
|
|
|
|
"dedup_key": "%s",
|
|
|
|
"event_action": "%s",
|
|
|
|
"payload": {
|
|
|
|
"summary": "%s",
|
|
|
|
"source": "%s",
|
|
|
|
"severity": "critical"
|
|
|
|
}
|
2021-12-03 03:05:17 +01:00
|
|
|
}`, provider.getIntegrationKeyForGroup(endpoint.Group), resolveKey, eventAction, message, endpoint.Name)
|
2020-09-17 01:26:19 +02:00
|
|
|
}
|
2021-05-16 03:31:32 +02:00
|
|
|
|
2021-10-28 05:16:05 +02:00
|
|
|
// getIntegrationKeyForGroup returns the appropriate pagerduty integration key for a given group
|
|
|
|
func (provider *AlertProvider) getIntegrationKeyForGroup(group string) string {
|
2021-10-06 02:40:44 +02:00
|
|
|
if provider.Overrides != nil {
|
|
|
|
for _, override := range provider.Overrides {
|
|
|
|
if group == override.Group {
|
|
|
|
return override.IntegrationKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-28 05:16:05 +02:00
|
|
|
return provider.IntegrationKey
|
2021-10-06 02:40:44 +02:00
|
|
|
}
|
|
|
|
|
2021-05-16 03:31:32 +02:00
|
|
|
// GetDefaultAlert returns the provider's default alert configuration
|
2021-05-19 04:29:15 +02:00
|
|
|
func (provider AlertProvider) GetDefaultAlert() *alert.Alert {
|
2021-05-16 03:31:32 +02:00
|
|
|
return provider.DefaultAlert
|
|
|
|
}
|
2021-12-03 03:05:17 +01:00
|
|
|
|
|
|
|
type pagerDutyResponsePayload struct {
|
|
|
|
Status string `json:"status"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
DedupKey string `json:"dedup_key"`
|
|
|
|
}
|