Browse Source

Fix acronym caps in GeneratorURL.

Change-Id: Ib18c1f617dcde1039e848059545a6d8831d9bf66
changes/93/393/2
Julius Volz 10 years ago
parent
commit
2c4cab07b1
  1. 4
      notification/notification.go
  2. 2
      rules/manager/manager.go

4
notification/notification.go

@ -66,7 +66,7 @@ type NotificationReq struct {
// A textual representation of the rule that triggered the alert. // A textual representation of the rule that triggered the alert.
RuleString string RuleString string
// Prometheus console link to alert expression. // Prometheus console link to alert expression.
GeneratorUrl string GeneratorURL string
} }
type NotificationReqs []*NotificationReq type NotificationReqs []*NotificationReq
@ -135,7 +135,7 @@ func (n *NotificationHandler) sendNotifications(reqs NotificationReqs) error {
"Payload": map[string]interface{}{ "Payload": map[string]interface{}{
"Value": req.Value, "Value": req.Value,
"ActiveSince": req.ActiveSince, "ActiveSince": req.ActiveSince,
"GeneratorUrl": req.GeneratorUrl, "GeneratorURL": req.GeneratorURL,
"AlertingRule": req.RuleString, "AlertingRule": req.RuleString,
}, },
}) })

2
rules/manager/manager.go

@ -187,7 +187,7 @@ func (m *ruleManager) queueAlertNotifications(rule *rules.AlertingRule, timestam
Value: aa.Value, Value: aa.Value,
ActiveSince: aa.ActiveSince.Time(), ActiveSince: aa.ActiveSince.Time(),
RuleString: rule.String(), RuleString: rule.String(),
GeneratorUrl: m.prometheusUrl + rules.GraphLinkForExpression(rule.Vector.String()), GeneratorURL: m.prometheusUrl + rules.GraphLinkForExpression(rule.Vector.String()),
}) })
} }
m.notifications <- notifications m.notifications <- notifications

Loading…
Cancel
Save