Commit 69006a77 by Marcel Anacker Committed by Torkel Ödegaard

Alerting: Fix OK state doesn't show up in Microsoft Teams (#11032)

* Alerting: Fix OK state doesn't show up in Microsoft Teams

* Fix formatting
parent dff2c14a
......@@ -82,6 +82,8 @@ func (this *TeamsNotifier) Notify(evalContext *alerting.EvalContext) error {
message := this.Mention
if evalContext.Rule.State != m.AlertStateOK { //dont add message when going back to alert state ok.
message += " " + evalContext.Rule.Message
} else {
message += " " // summary must not be empty
}
body := map[string]interface{}{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment