Opensource

Grafana 9 Alert Notification templates

KK_Ryong 2023. 5. 17. 13:56

■■■Alert rule 설정 값■■■

■■■Notification templates■■■

{{ define "alert" }}
{{ if gt (len .Alerts.Firing) 0 }} 🚨경고 {{ .CommonLabels.alertname }}
{{range .Alerts.Firing}}{{ if gt (len .Annotations) 0 }}
instance = {{ .Annotations.instance}}
value = {{ .Annotations.value_txt}}
{{ .Annotations.text}}
{{ if gt (len .DashboardURL ) 0 }}
Go to dashboard: {{ .DashboardURL }}
---------------------------------------------------------------------
{{ end }}{{ end }}{{ end }}{{ end }}
{{ if gt (len .Alerts.Resolved) 0 }} ✅해결 {{ .CommonLabels.alertname }}
{{range .Alerts.Resolved}}{{ if gt (len .Annotations) 0 }}
instance = {{ .Annotations.instance}}
value = {{ .Annotations.value_txt}}
{{ .Annotations.text}}
{{ if gt (len .DashboardURL ) 0 }}
Go to dashboard: {{ .DashboardURL }}
---------------------------------------------------------------------
{{ end }}{{ end }}{{ end }}{{ end }}{{ end }}