The alert notification template uses Go Template syntax to render the template.
The template will be rendered based on the following data.
{"status":"firing","labels":{"alertgroup":"test-group",// Alert policy name"alertname":"test-rule",// Alert rule name"cluster":"35b54a48-b66c-467b-a8dc-503c40826330","customlabel1":"v1","customlabel2":"v2","endpoint":"https","group_id":"01gypg06fcdf7rmqc4ksv97646","instance":"10.6.152.85:6443","job":"apiserver","namespace":"default","prometheus":"insight-system/insight-agent-kube-prometh-prometheus","prometheus_replica":"prometheus-insight-agent-kube-prometh-prometheus-0","rule_id":"01gypg06fcyn2g9zyehbrvcdfn","service":"kubernetes","severity":"critical","target":"35b54a48-b66c-467b-a8dc-503c40826330","target_type":"cluster"},"annotations":{"customanno1":"v1","customanno2":"v2","description":"This is a test rule, 10.6.152.85:6443 down","value":"1"},"startsAt":"2023-04-20T07:53:54.637363473Z","endsAt":"0001-01-01T00:00:00Z","generatorURL":"http://vmalert-insight-victoria-metrics-k8s-stack-df987997b-npsl9:8080/vmalert/alert?group_id=16797738747470868115&alert_id=10071735367745833597","fingerprint":"25c8d93d5bf58ac4"}
The toClusterName function retrieves the "cluster name" based on the "cluster unique identifier (ID)". If there is no corresponding cluster found, it will directly return the passed-in cluster's unique identifier.
The toClusterId function retrieves the "cluster unique identifier (ID)" based on the "cluster name". If there is no corresponding cluster found, it will directly return the passed-in cluster name.
Because Insight combines messages generated by the same rule at the same time when sending alert messages, email subjects are different from the four templates above and only use the content of commonLabels in the alert message to render the template. The default template is as follows:
[{{.status}}][{{.severity}}]Alert:{{.alertname}}
Other fields that can be used as email subjects are as follows:
{{ .status }} Triggering status of the alert message
{{ .alertgroup }} Name of the policy to which the alert belongs
{{ .alertname }} Name of the rule to which the alert belongs
{{ .severity }} Severity level of the alert
{{ .target_type }} Type of resource for which the alert is raised
{{ .target }} Resource object for which the alert is raised
{{ .Custom label key for other rules }}