In my Contact Point, I have the following for the alert subject:
{{ define "alert_subject" }}
{{ if eq .Status "firing" }}
{{ .Labels.node_name }} Load Alert
{{ end }}
{{ if eq .Status "resolved" }}
{{ .Labels.node_name }} OK
{{ end }}
{{ end }}
It shows the correct text, but the link takes me to the https://<grafana_url>/graph/alerting/list
screen in Grafana. Is there any way to change the URL of the link to be the .PanelURL
instead? I have been unable to find this information.