feat(grafana alerts): add notification channel (email) for grafana alerts

This commit is contained in:
franz.germann 2025-08-05 15:01:12 +02:00
parent 6af5ce71cd
commit c9d14d451f

View file

@ -537,104 +537,25 @@ alertmanager:
# -- (object) Alertmanager configuration # -- (object) Alertmanager configuration
config: config:
route: route:
receiver: "blackhole" receiver: "outlook"
# group_by: ["alertgroup", "job"] routes:
# group_wait: 30s - matchers:
# group_interval: 5m - alertname=~".*"
# repeat_interval: 12h receiver: outlook
# routes:
#
# # Duplicate code_owner routes to teams
# # These will send alerts to team channels but continue
# # processing through the rest of the tree to handled by on-call
# - matchers:
# - code_owner_channel!=""
# - severity=~"info|warning|critical"
# group_by: ["code_owner_channel", "alertgroup", "job"]
# receiver: slack-code-owners
#
# # Standard on-call routes
# - matchers:
# - severity=~"info|warning|critical"
# receiver: slack-monitoring
# continue: true
#
# inhibit_rules:
# - target_matchers:
# - severity=~"warning|info"
# source_matchers:
# - severity=critical
# equal:
# - cluster
# - namespace
# - alertname
# - target_matchers:
# - severity=info
# source_matchers:
# - severity=warning
# equal:
# - cluster
# - namespace
# - alertname
# - target_matchers:
# - severity=info
# source_matchers:
# - alertname=InfoInhibitor
# equal:
# - cluster
# - namespace
receivers: receivers:
- name: blackhole - name: outlook
# - name: "slack-monitoring" email_configs:
# slack_configs: - smarthost: 'mail.mms-support.de:465'
# - channel: "#channel" auth_username: 'ipcei-cis-devfw@mms-support.de'
# send_resolved: true auth_password:
# title: '{{ template "slack.monzo.title" . }}' name: email-user-credentials
# icon_emoji: '{{ template "slack.monzo.icon_emoji" . }}' key: connection-string
# color: '{{ template "slack.monzo.color" . }}' from: '"IPCEI CIS DevFW" <ipcei-cis-devfw@mms-support.de>'
# text: '{{ template "slack.monzo.text" . }}' to: 'ipcei-cis-devfw@mms-support.de'
# actions: headers:
# - type: button subject: 'Grafana Mail Alerts'
# text: "Runbook :green_book:" require_tls: false
# url: "{{ (index .Alerts 0).Annotations.runbook_url }}"
# - type: button
# text: "Query :mag:"
# url: "{{ (index .Alerts 0).GeneratorURL }}"
# - type: button
# text: "Dashboard :grafana:"
# url: "{{ (index .Alerts 0).Annotations.dashboard }}"
# - type: button
# text: "Silence :no_bell:"
# url: '{{ template "__alert_silence_link" . }}'
# - type: button
# text: '{{ template "slack.monzo.link_button_text" . }}'
# url: "{{ .CommonAnnotations.link_url }}"
# - name: slack-code-owners
# slack_configs:
# - channel: "#{{ .CommonLabels.code_owner_channel }}"
# send_resolved: true
# title: '{{ template "slack.monzo.title" . }}'
# icon_emoji: '{{ template "slack.monzo.icon_emoji" . }}'
# color: '{{ template "slack.monzo.color" . }}'
# text: '{{ template "slack.monzo.text" . }}'
# actions:
# - type: button
# text: "Runbook :green_book:"
# url: "{{ (index .Alerts 0).Annotations.runbook }}"
# - type: button
# text: "Query :mag:"
# url: "{{ (index .Alerts 0).GeneratorURL }}"
# - type: button
# text: "Dashboard :grafana:"
# url: "{{ (index .Alerts 0).Annotations.dashboard }}"
# - type: button
# text: "Silence :no_bell:"
# url: '{{ template "__alert_silence_link" . }}'
# - type: button
# text: '{{ template "slack.monzo.link_button_text" . }}'
# url: "{{ .CommonAnnotations.link_url }}"
#
# -- Better alert templates for [slack source](https://gist.github.com/milesbxf/e2744fc90e9c41b47aa47925f8ff6512) # -- Better alert templates for [slack source](https://gist.github.com/milesbxf/e2744fc90e9c41b47aa47925f8ff6512)
monzoTemplate: monzoTemplate:
enabled: true enabled: true