| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- package notifiers
- import (
- "encoding/json"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/infra/log"
- "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/services/alerting"
- )
- func init() {
- alerting.RegisterNotifier(&alerting.NotifierPlugin{
- Type: "teams",
- Name: "Microsoft Teams",
- Description: "Sends notifications using Incoming Webhook connector to Microsoft Teams",
- Factory: NewTeamsNotifier,
- OptionsTemplate: `
- <h3 class="page-heading">Teams settings</h3>
- <div class="gf-form max-width-30">
- <span class="gf-form-label width-6">Url</span>
- <input type="text" required class="gf-form-input max-width-30" ng-model="ctrl.model.settings.url" placeholder="Teams incoming webhook url"></input>
- </div>
- `,
- })
- }
- // NewTeamsNotifier is the constructor for Teams notifier.
- func NewTeamsNotifier(model *models.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 &TeamsNotifier{
- NotifierBase: NewNotifierBase(model),
- URL: url,
- log: log.New("alerting.notifier.teams"),
- }, nil
- }
- // TeamsNotifier is responsible for sending
- // alert notifications to Microsoft teams.
- type TeamsNotifier struct {
- NotifierBase
- URL string
- log log.Logger
- }
- // Notify send an alert notification to Microsoft teams.
- func (tn *TeamsNotifier) Notify(evalContext *alerting.EvalContext) error {
- tn.log.Info("Executing teams notification", "ruleId", evalContext.Rule.ID, "notification", tn.Name)
- ruleURL, err := evalContext.GetRuleURL()
- if err != nil {
- tn.log.Error("Failed get rule link", "error", err)
- return err
- }
- fields := make([]map[string]interface{}, 0)
- fieldLimitCount := 4
- for index, evt := range evalContext.EvalMatches {
- fields = append(fields, map[string]interface{}{
- "name": evt.Metric,
- "value": evt.Value,
- })
- if index > fieldLimitCount {
- break
- }
- }
- if evalContext.Error != nil {
- fields = append(fields, map[string]interface{}{
- "name": "Error message",
- "value": evalContext.Error.Error(),
- })
- }
- message := ""
- if evalContext.Rule.State != models.AlertStateOK { //don't add message when going back to alert state ok.
- message = evalContext.Rule.Message
- }
- images := make([]map[string]interface{}, 0)
- if evalContext.ImagePublicURL != "" {
- images = append(images, map[string]interface{}{
- "image": evalContext.ImagePublicURL,
- })
- }
- body := map[string]interface{}{
- "@type": "MessageCard",
- "@context": "http://schema.org/extensions",
- // summary MUST not be empty or the webhook request fails
- // summary SHOULD contain some meaningful information, since it is used for mobile notifications
- "summary": evalContext.GetNotificationTitle(),
- "title": evalContext.GetNotificationTitle(),
- "themeColor": evalContext.GetStateModel().Color,
- "sections": []map[string]interface{}{
- {
- "title": "Details",
- "facts": fields,
- "images": images,
- "text": message,
- },
- },
- "potentialAction": []map[string]interface{}{
- {
- "@context": "http://schema.org",
- "@type": "OpenUri",
- "name": "View Rule",
- "targets": []map[string]interface{}{
- {
- "os": "default", "uri": ruleURL,
- },
- },
- },
- {
- "@context": "http://schema.org",
- "@type": "OpenUri",
- "name": "View Graph",
- "targets": []map[string]interface{}{
- {
- "os": "default", "uri": evalContext.ImagePublicURL,
- },
- },
- },
- },
- }
- data, _ := json.Marshal(&body)
- cmd := &models.SendWebhookSync{Url: tn.URL, Body: string(data)}
- if err := bus.DispatchCtx(evalContext.Ctx, cmd); err != nil {
- tn.log.Error("Failed to send teams notification", "error", err, "webhook", tn.Name)
- return err
- }
- return nil
- }
|