grafana/pkg/services/alerting/notifiers/pagerduty.go

87 lines
2.5 KiB
Go
Raw Normal View History

2016-10-29 00:19:51 -05:00
package notifiers
import (
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/components/simplejson"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/metrics"
m "github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/services/alerting"
)
func init() {
alerting.RegisterNotifier("pagerduty", NewPagerdutyNotifier)
}
func NewPagerdutyNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
key := model.Settings.Get("integrationKey").MustString()
if key == "" {
return nil, alerting.ValidationError{Reason: "Could not find integration key property in settings"}
}
return &PagerdutyNotifier{
2016-11-02 13:08:51 -05:00
NotifierBase: NewNotifierBase(model.Id, model.IsDefault, model.Name, model.Type, model.Settings),
2016-11-01 01:48:59 -05:00
Key: key,
2016-11-02 13:08:51 -05:00
AlertOnExecError: model.Settings.Get("alertOnExecError").MustBool(),
2016-11-01 01:48:59 -05:00
log: log.New("alerting.notifier.pagerduty"),
2016-10-29 00:19:51 -05:00
}, nil
}
type PagerdutyNotifier struct {
NotifierBase
2016-11-02 13:08:51 -05:00
Key string
AlertOnExecError bool
log log.Logger
2016-10-29 00:19:51 -05:00
}
func (this *PagerdutyNotifier) Notify(evalContext *alerting.EvalContext) error {
this.log.Info("Notifying Pagerduty")
metrics.M_Alerting_Notification_Sent_PagerDuty.Inc(1)
2016-11-02 13:08:51 -05:00
if (evalContext.Rule.State == m.AlertStateAlerting) ||
((this.AlertOnExecError) && (evalContext.Rule.State == m.AlertStateExecError)) {
2016-10-29 00:19:51 -05:00
// Pagerduty Events API URL
pgEventsUrl := "https://events.pagerduty.com/generic/2010-04-15/create_event.json"
bodyJSON := simplejson.New()
bodyJSON.Set("service_key", this.Key)
2016-11-02 13:08:51 -05:00
bodyJSON.Set("description", evalContext.Rule.Name+"-"+evalContext.Rule.Message)
2016-10-29 00:19:51 -05:00
bodyJSON.Set("client", "Grafana")
bodyJSON.Set("event_type", "trigger")
2016-11-02 13:08:51 -05:00
2016-10-29 00:19:51 -05:00
ruleUrl, err := evalContext.GetRuleUrl()
if err != nil {
this.log.Error("Failed get rule link", "error", err)
return err
}
bodyJSON.Set("client_url", ruleUrl)
if evalContext.ImagePublicUrl != "" {
var contexts []interface{}
imageJSON := simplejson.New()
imageJSON.Set("type", "image")
imageJSON.Set("src", evalContext.ImagePublicUrl)
contexts[0] = imageJSON
bodyJSON.Set("contexts", contexts)
}
body, _ := bodyJSON.MarshalJSON()
cmd := &m.SendWebhook{
Url: pgEventsUrl,
Body: string(body),
HttpMethod: "POST",
}
if err := bus.Dispatch(cmd); err != nil {
this.log.Error("Failed to send notification to Pagerduty", "error", err, "body", string(body))
}
} else {
this.log.Info("Not sending a trigger to Pagerduty", "state", evalContext.Rule.State)
}
return nil
}