{{/* Email notification templates for Cloudflare Mesh Observatory */}} {{/* HTML email template */}} {{ define "email.cloudflare.html" }}

Cloudflare Mesh Observatory

{{ .Status }}

Alert Summary

Status {{ .Status | toUpper }}
Alert Name {{ .CommonLabels.alertname }}
Severity {{ .CommonLabels.severity | toUpper }}
Component {{ .CommonLabels.component }}
Firing Alerts {{ .Alerts.Firing | len }}
Resolved Alerts {{ .Alerts.Resolved | len }}

Alert Details

{{ range .Alerts }}
{{ .Labels.alertname }} {{ .Status }}
Severity: {{ .Labels.severity }} Component: {{ .Labels.component }} Started: {{ .StartsAt.Format "2006-01-02 15:04:05 UTC" }} {{ if eq .Status "resolved" }} Resolved: {{ .EndsAt.Format "2006-01-02 15:04:05 UTC" }} {{ end }}
Summary: {{ .Annotations.summary }}
Description: {{ .Annotations.description }}
Labels:
{{ range .Labels.SortedPairs }} {{ .Name }}: {{ .Value }} {{ end }}
{{ if .Annotations.runbook_url }} View Runbook {{ end }}
{{ end }}

Quick Links

{{ end }} {{/* Plain text email template */}} {{ define "email.cloudflare.text" }} ================================================================================ CLOUDFLARE MESH OBSERVATORY - ALERT {{ .Status | toUpper }} ================================================================================ Status: {{ .Status | toUpper }} Alert: {{ .CommonLabels.alertname }} Severity: {{ .CommonLabels.severity | toUpper }} Component: {{ .CommonLabels.component }} Firing: {{ .Alerts.Firing | len }} alerts Resolved: {{ .Alerts.Resolved | len }} alerts ================================================================================ ALERT DETAILS ================================================================================ {{ range .Alerts }} -------------------------------------------------------------------------------- {{ .Labels.alertname }} [{{ .Status | toUpper }}] -------------------------------------------------------------------------------- Severity: {{ .Labels.severity }} Component: {{ .Labels.component }} Started: {{ .StartsAt.Format "2006-01-02 15:04:05 UTC" }} {{ if eq .Status "resolved" }}Resolved: {{ .EndsAt.Format "2006-01-02 15:04:05 UTC" }}{{ end }} Summary: {{ .Annotations.summary }} Description: {{ .Annotations.description }} Labels: {{ range .Labels.SortedPairs }} - {{ .Name }}: {{ .Value }} {{ end }} {{ if .Annotations.runbook_url }}Runbook: {{ .Annotations.runbook_url }}{{ end }} {{ end }} ================================================================================ QUICK LINKS ================================================================================ Grafana: http://localhost:3000 Prometheus: http://localhost:9090 Alertmanager: http://localhost:9093 Cloudflare: https://dash.cloudflare.com ================================================================================ Generated by Cloudflare Mesh Observatory {{ end }} {{/* Daily digest email template */}} {{ define "email.cloudflare.digest" }}

Daily Alert Digest

{{ now.Format "Monday, January 2, 2006" }}

24-Hour Summary

Metric Count
Total Alerts {{ len .Alerts }}
Currently Firing {{ .Alerts.Firing | len }}
Resolved {{ .Alerts.Resolved | len }}

Alerts by Severity

Alerts by Component

{{ end }}