minor fixes based on code review

This commit is contained in:
bergquist
2018-11-12 10:50:56 +01:00
parent aa1b80fe45
commit 2fb78a50d6
2 changed files with 3 additions and 3 deletions

View File

@@ -70,11 +70,11 @@ func (c *EvalContext) GetStateModel() *StateDescription {
}
case m.AlertStateUnknown:
return &StateDescription{
Color: "888888",
Color: "#888888",
Text: "Unknown",
}
default:
panic("Unknown rule state for alert notifications " + c.Rule.State)
panic("Unknown rule state for alert " + c.Rule.State)
}
}