Don't send resolved to Slack by default
Slack is a general chat system, it has no notion of resolved messages. Default it to false to avoid spamming people as we do with all other such systems.
This commit is contained in:
parent
0c668ea4e5
commit
9a175d7b4f
|
@ -56,7 +56,7 @@ var (
|
|||
// DefaultSlackConfig defines default values for Slack configurations.
|
||||
DefaultSlackConfig = SlackConfig{
|
||||
NotifierConfig: NotifierConfig{
|
||||
VSendResolved: true,
|
||||
VSendResolved: false,
|
||||
},
|
||||
Color: `{{ if eq .Status "firing" }}danger{{ else }}good{{ end }}`,
|
||||
Username: `{{ template "slack.default.username" . }}`,
|
||||
|
|
Loading…
Reference in New Issue