smokeping-formula/smokeping/files/Alerts

16 lines
448 B
Plaintext
Raw Permalink Normal View History

2016-07-14 13:58:43 +02:00
{%- from "smokeping/map.jinja" import smokeping with context -%}
*** Alerts ***
to = {{ salt['pillar.get']('smokeping:alerts:to', 'alertee@address.somewhere') }}
from = {{ salt['pillar.get']('smokeping:alerts:from', 'smokealert@company.xy') }}
{% for alert, options in smokeping.alerts.items() -%}
2016-07-14 13:58:43 +02:00
{% if options is mapping() %}
+ {{ alert }}
{% for key, value in options.items() -%}
2016-07-14 13:58:43 +02:00
{{ key }} = {{ value }}
{% endfor %}
{% endif %}
{% endfor %}