したがって、アラートは次のようになります
ALERT alert_name
condition
FOR 30s
LABELS {some labels}
ANNOTATIONS {
header = "<b> data is {{ $labels.label_name }} </b>"
}
メールテンプレートは次のようになります。
{{ define "our_default_template" }}
{{range .Alerts}}
{{ .Annotations.header }}
{{ end }}
{{ end }}
alertmanager.yml は次のようになります
receivers:
- name: 'email-sender'
email_configs:
- to: "email address"
send_resolved: true
html: '{{ template "our_default_template" . }}'
templates:
- '<path to templates>/*tmpl'
メールを受信していますが、内容が正しくありません。
メールで受け取る内容:
<b> data is label_value </b>
私たちが欲しいもの:
データは label_value
したがって、必要なのは html 出力です。
誰かがこれを手伝ってくれますか?