inCaller / prometheus_bot

Telegram bot for prometheus alerting
MIT License
400 stars 184 forks source link

Add missing 'Status' to Alert struct. #61

Closed v-zhuravlev closed 3 years ago

v-zhuravlev commented 3 years ago

See https://prometheus.io/docs/alerting/latest/notifications/#alert .

This field is required to use templates like this

{{ range .Alerts }} {{ if eq .Status "firing"}}🔥{{ .Status | str_UpperCase }}🔥{{ end }} {{ end }}

hryamzik commented 3 years ago

LGTM, ty!