summaryrefslogtreecommitdiff
path: root/roles/monitoring/alerta/templates/alerta.conf.j2.j2
blob: 66f5f14cc132c9b3fc1f429db96a93d881715628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 %}