fix hipchat color code used "no data" notifications

This commit is contained in:
Cyril Bonté 2018-09-14 17:22:07 +02:00
parent 6cdfff52f7
commit 0f4ee4ce87

View File

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