formula-prometheus-ng/prometheus/files/exporter.systemd.jinja

24 lines
457 B
Plaintext
Raw Normal View History

[Unit]
Description=Prometheus {{ svc }} Exporter
2019-05-08 20:34:24 -04:00
{%- if url %}
Documentation={{ url }}
{%- endif %}
Wants=basic.target
After=basic.target network.target
[Service]
User={{ user }}
Group={{ group }}
EnvironmentFile=/etc/default/{{ svc }}
ExecStart={{ bin_path }}/{{ svc }} $ARGS
2019-05-08 18:40:45 -04:00
{%- if args is string %} {{ args }}{% else %}
2019-05-08 18:43:22 -04:00
{%- for arg in args %} \
{{ arg }}
{%- endfor %}
{%- endif %}
Restart=always
RestartSec=42s
[Install]
WantedBy=multi-user.target