I found a template for Prometheus Alert Manager for alerts, but I receive many unnecessary labels in notification. How to remove labels in template? This code is responsible for labels (look below). I dont have deep knowledge in Go Templating system & Json, so I'm asking for help.
{{ if gt (len $alerts.Labels.SortedPairs) 0 -}},
"labels":
{{ "{" }}
{{ range $index, $label := $alerts.Labels.SortedPairs }}
{{ if $index }},
{{ end }}
"{{ $label.Name }}": "{{ $label.Value }}"
{{ end }}
{{ "}" }}
{{- end }}