From 4930ff68c7d699611511aaabd2c2ebe585207051 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 11 Mar 2022 20:58:38 +0100 Subject: alerta: improve support for mailer --- .../monitoring/alerta/templates/alerta.conf.j2.j2 | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 roles/monitoring/alerta/templates/alerta.conf.j2.j2 (limited to 'roles/monitoring/alerta/templates/alerta.conf.j2.j2') diff --git a/roles/monitoring/alerta/templates/alerta.conf.j2.j2 b/roles/monitoring/alerta/templates/alerta.conf.j2.j2 new file mode 100644 index 00000000..66f5f14c --- /dev/null +++ b/roles/monitoring/alerta/templates/alerta.conf.j2.j2 @@ -0,0 +1,24 @@ +[DEFAULT] +sslverify = no +output = presto +endpoint = http://localhost:8080/api +timezone = Europe/London +{{ '{%-' }} if env.API_KEY {{ '%}' }} +key = {{ '{{' }} env.API_KEY {{ '}}' }} +{{ '{%-' }} endif {{ '%}' }} +debug = {{ '{{' }} 'yes' if env.DEBUG else 'no' {{ '}}' }} +{% if alerta_mailer is defined %} + +[alerta-mailer] +debug = {{ '{{' }} 'yes' if env.DEBUG else 'no' {{ '}}' }} +{{ '{%-' }} if env.API_KEY {{ '%}' }} +key = {{ '{{' }} env.API_KEY {{ '}}' }} +{{ '{%-' }} endif {{ '%}' }} +endpoint = http://localhost:8080/api +amqp_url = redis://localhost:6379 +email_type: text +mail_template: /app/email.tmpl +{% for option, value in alerta_mailer.items() %} +{{ option }} = {{ value }} +{% endfor %} +{% endif %} -- cgit v1.2.3