Merge pull request #13284 from cbonte/hipchat-notifications

fix hipchat color code used for "no data" notifications
pull/13296/head
Torkel Ödegaard 7 years ago committed by GitHub
commit 438119b806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/services/alerting/notifiers/hipchat.go

@ -125,7 +125,7 @@ func (this *HipChatNotifier) Notify(evalContext *alerting.EvalContext) error {
case models.AlertStateOK:
color = "green"
case models.AlertStateNoData:
color = "grey"
color = "gray"
case models.AlertStateAlerting:
color = "red"
}

Loading…
Cancel
Save