Skip to content

Instantly share code, notes, and snippets.

@trexx
Last active June 13, 2025 07:01
Show Gist options
  • Save trexx/76e18880d14a286f6dfe29c6d027694d to your computer and use it in GitHub Desktop.
Save trexx/76e18880d14a286f6dfe29c6d027694d to your computer and use it in GitHub Desktop.
Grafana Template for PagerDuty ContactPoints
# Set the incident severity based upon the severity label in the alert rule
# Only include the valid severity values or default to critical if none exists or invalid
{{- range .Alerts -}}{{- if or (eq .Labels.severity "critical") (eq .Labels.severity "error") (eq .Labels.severity "warning") (eq .Labels.severity "info") -}}{{ .Labels.severity }}{{- else -}}critical{{- end -}}{{- end -}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment