Skip to content

Instantly share code, notes, and snippets.

@jidckii
Created April 5, 2023 14:08
Show Gist options
  • Save jidckii/5ac5f8f20368b56de72af70222509b7b to your computer and use it in GitHub Desktop.
Save jidckii/5ac5f8f20368b56de72af70222509b7b to your computer and use it in GitHub Desktop.
Alertmanager telegram template
{{ define "__yucca_text_alert_list" }}{{ range . }}
---
πŸͺͺ <b>{{ .Labels.alertname }}</b>
{{- if .Annotations.summary }}
πŸ“ {{ .Annotations.summary }}{{ end }}
{{- if .Annotations.description }}
πŸ“– {{ .Annotations.description }}{{ end }}
🏷 Labels:
{{ range .Labels.SortedPairs }} <i>{{ .Name }}</i>: <code>{{ .Value }}</code>
{{ end }}{{ end }}
πŸ›  <a href="https://yucca.app/">Grafana</a> πŸ’Š <a href="https://yucca.app/">Alertmanager</a> πŸ’Š <a href="https://yucca.app/">Prometheus</a> πŸ› 
{{ end }}
{{ define "telegram.yucca.message" }}
{{ if gt (len .Alerts.Firing) 0 }}
πŸ”₯ Alerts Firing πŸ”₯
{{ template "__yucca_text_alert_list" .Alerts.Firing }}
{{ end }}
{{ if gt (len .Alerts.Resolved) 0 }}
βœ… Alerts Resolved βœ…
{{ template "__yucca_text_alert_list" .Alerts.Resolved }}
{{ end }}
{{ end }}
@SanYattsu
Copy link

Finally, found template that works.

@vnikoghosyan
Copy link

Here is the template for "firing" and "resolved" alerts

`cat ../alertmanager/templates/telegram.tmpl
{{ define "telegram.default.message" }}
{{ if eq .Status "firing" }}
{{ if eq .CommonLabels.severity "critical" }}πŸ”΄ Alert: {{ .CommonLabels.alertname }}
{{ else if eq .CommonLabels.severity "warning" }}🟠 Alert: {{ .CommonLabels.alertname }}
{{ else }}βšͺ️ Alert: {{ .CommonLabels.alertname }}
{{ end }}
Status: πŸ”₯ FIRING
Severity: {{ if eq .CommonLabels.severity "critical" }}πŸ”΄ {{ .CommonLabels.severity | title }}{{ else if eq .CommonLabels.severity "warning" }}🟠 {{ .CommonLabels.severity | title }}{{ else }}βšͺ️ {{ .CommonLabels.severity | title }}{{ end }}
{{ else if eq .Status "resolved" }}
{{ if eq .CommonLabels.severity "critical" }}🟒 🚌 TRANSPORT Alert: {{ .CommonLabels.alertname }}
{{ else if eq .CommonLabels.severity "warning" }}🟒 🚌 TRANSPORT Alert: {{ .CommonLabels.alertname }}
{{ else }}βšͺ️ Alert: {{ .CommonLabels.alertname }}
{{ end }}
Status: βœ… RESOLVED
Severity: {{ if eq .CommonLabels.severity "critical" }}🟒 {{ .CommonLabels.severity | title }}{{ else if eq .CommonLabels.severity "warning" }}🟒 {{ .CommonLabels.severity | title }}{{ else }}βšͺ️ {{ .CommonLabels.severity | title }}{{ end }}
{{ end }}
{{ range .Alerts }}
Instance: {{ .Labels.instance }}

  • Title: {{ .Annotations.title }}
  • Description: {{ .Annotations.description }}
    {{ end }}
    {{ end }}`

Example notification:
Firing
🟠 Alert: HighMemoryUsage>90%

Status: πŸ”₯ FIRING
Severity: 🟠 Warning

Instance: server-1:9100

  • Title: WARNING High Memory Usage on server-1:9100
  • Description: Memory usage on the instance is 53.67%

Resolved
🟒 Alert: HighMemoryUsage>90%

Status: βœ… RESOLVED
Severity: 🟒 Warning

Instance: server-1:9100

  • Title: WARNING High Memory Usage on server-1:9100
  • Description: Memory usage on the instance is 64.59%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment