发送邮件时如何打印换行符?我把它发送到gmail。字符 \n
按字面打印。我什至尝试过 </br>
标签和 yaml mutliline,但它们都不起作用。
- alert: KubernetesPodImagePullBackOff
expr: kube_pod_container_status_waiting_reason{reason=~"ContainerCreating|CrashLoopBackOff|ErrImagePull|ImagePullBackOff"} > 0
for: 1s
labels:
severity: warning
annotations:
summary: "Kubernetes pod crash looping (instance {{ $labels.instance }}"
description: "Pod {{ $labels.pod }} is crash looping\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
答案 0 :(得分:0)
您需要在 Alertmanager 中为电子邮件重写默认模板。
你需要更换类似的东西
{{ .Annotations.description }}
在模板中
{{ .Annotations.description | safeHtml }}
我是为我自己的电子邮件模板写的,如果你没有自己的,你可以从 https://github.com/prometheus/alertmanager/blob/master/template/default.tmpl 并编辑
{{ range .Annotations.SortedPairs }} - {{ .Name }} = {{ .Value }}
以同样的方式
{{ .Value | safeHtml }}
另请阅读此答案 prometheus using html content in alerts annotations and using it in email template