Don't include trailing \n or <br/> if summary is missing

master
jeltz 2 years ago
parent c24d9d6953
commit e1893769da

@ -27,8 +27,10 @@ TEMPLATE_TEXT = (
"{% elif labels.severity == 'warning' %}" "{% elif labels.severity == 'warning' %}"
"ATTENTION " "ATTENTION "
"{% endif %}" "{% endif %}"
"{{ labels.alertname }} {{ labels.instance }}\n" "{{ labels.alertname }} {{ labels.instance }}"
"{{ annotations.summary }}" "{% if annotations.summary %}"
"\n{{ annotations.summary }}"
"{% endif %}"
) )
TEMPLATE_HTML = ( TEMPLATE_HTML = (
@ -40,8 +42,11 @@ TEMPLATE_HTML = (
"<b><font color='orange'>ATTENTION</font></b> " "<b><font color='orange'>ATTENTION</font></b> "
"{% endif %}" "{% endif %}"
"<b>{{ labels.alertname }}</b> " "<b>{{ labels.alertname }}</b> "
"{{ labels.instance }}<br/>" "{{ labels.instance }}"
"{% if annotations.summary %}"
"<br/>"
"<blockquote>{{ annotations.summary }}</blockquote>" "<blockquote>{{ annotations.summary }}</blockquote>"
"{% endif %}"
) )

Loading…
Cancel
Save