Merge pull request #13284 from cbonte/hipchat-notifications

fix hipchat color code used for "no data" notifications
This commit is contained in:
Torkel Ödegaard 2018-09-15 13:57:09 +02:00 committed by GitHub
commit 438119b806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}