try to fix prometheus

try to fix prometheus 2

try to fix prometheus 3
This commit is contained in:
Aaron Riedel 2023-08-30 21:32:18 +02:00
parent ffaf6a079e
commit 778306127f
Signed by: aaron
GPG key ID: 643004654D40D577
2 changed files with 20 additions and 12 deletions

15
prometheus/templates.yaml Normal file
View file

@ -0,0 +1,15 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: templates
namespace: prometheus
data:
telegram.tmpl: |-
{{ define "telegram.aaron" }}
{{ range .Alerts }}
{{ if eq .Status "firing"}}🔥 <b>{{ .Labels.alertname }}</b> 🔥{{ else }}✅ <b>{{ .Labels.alertname }}</b> ✅{{ end }}
<b> {{ .Annotations.summary }} </b>
{{ .Annotations.description }}
{{ end }}
{{ end }}