I have a running Prometheus and configured alerts by alertmanager to my slack. and I am able to get the triggered alerts with its Description. For that I have added the following in my config file.
Summary: '{{ range .Alerts }}{{ .Annotations.summary }} {{ end }}'
Description: '{{ range .Alerts }}{{ .Annotations.description }} {{ end }}'
But now my issue is, the same description is generating, when the alerts are resolved. Is there any way to disable the Alert description for the resolved message?