mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
55b560a4a8
closes #5851
102 lines
2.7 KiB
Go
102 lines
2.7 KiB
Go
package notifiers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"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"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
func init() {
|
|
alerting.RegisterNotifier("slack", NewSlackNotifier)
|
|
}
|
|
|
|
func NewSlackNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
|
|
url := model.Settings.Get("url").MustString()
|
|
if url == "" {
|
|
return nil, alerting.ValidationError{Reason: "Could not find url property in settings"}
|
|
}
|
|
|
|
return &SlackNotifier{
|
|
NotifierBase: NewNotifierBase(model.Name, model.Type, model.Settings),
|
|
Url: url,
|
|
log: log.New("alerting.notifier.slack"),
|
|
}, nil
|
|
}
|
|
|
|
type SlackNotifier struct {
|
|
NotifierBase
|
|
Url string
|
|
log log.Logger
|
|
}
|
|
|
|
func (this *SlackNotifier) Notify(context *alerting.EvalContext) {
|
|
this.log.Info("Executing slack notification", "ruleId", context.Rule.Id, "notification", this.Name)
|
|
metrics.M_Alerting_Notification_Sent_Slack.Inc(1)
|
|
|
|
ruleUrl, err := context.GetRuleUrl()
|
|
if err != nil {
|
|
this.log.Error("Failed get rule link", "error", err)
|
|
return
|
|
}
|
|
|
|
fields := make([]map[string]interface{}, 0)
|
|
fieldLimitCount := 4
|
|
for index, evt := range context.EvalMatches {
|
|
fields = append(fields, map[string]interface{}{
|
|
"title": evt.Metric,
|
|
"value": evt.Value,
|
|
"short": true,
|
|
})
|
|
if index > fieldLimitCount {
|
|
break
|
|
}
|
|
}
|
|
|
|
if context.Error != nil {
|
|
fields = append(fields, map[string]interface{}{
|
|
"title": "Error message",
|
|
"value": context.Error.Error(),
|
|
"short": false,
|
|
})
|
|
}
|
|
|
|
message := ""
|
|
if context.Rule.State != m.AlertStateOK { //dont add message when going back to alert state ok.
|
|
message = context.Rule.Message
|
|
}
|
|
|
|
body := map[string]interface{}{
|
|
"attachments": []map[string]interface{}{
|
|
{
|
|
"color": context.GetStateModel().Color,
|
|
"title": context.GetNotificationTitle(),
|
|
"title_link": ruleUrl,
|
|
"text": message,
|
|
"fields": fields,
|
|
"image_url": context.ImagePublicUrl,
|
|
"footer": "Grafana v" + setting.BuildVersion,
|
|
"footer_icon": "http://grafana.org/assets/img/fav32.png",
|
|
"ts": time.Now().Unix(),
|
|
//"pretext": "Optional text that appears above the attachment block",
|
|
// "author_name": "Bobby Tables",
|
|
// "author_link": "http://flickr.com/bobby/",
|
|
// "author_icon": "http://flickr.com/icons/bobby.jpg",
|
|
// "thumb_url": "http://example.com/path/to/thumb.png",
|
|
},
|
|
},
|
|
}
|
|
|
|
data, _ := json.Marshal(&body)
|
|
cmd := &m.SendWebhook{Url: this.Url, Body: string(data)}
|
|
|
|
if err := bus.Dispatch(cmd); err != nil {
|
|
this.log.Error("Failed to send slack notification", "error", err, "webhook", this.Name)
|
|
}
|
|
}
|