2019-05-07 23:58:35 -04:00
|
|
|
[Unit]
|
|
|
|
Description=Prometheus {{ exporter }} Exporter
|
|
|
|
Documentation=https://prometheus.io/docs/introduction/overview/
|
|
|
|
After=network-online.target
|
|
|
|
|
|
|
|
[Service]
|
2019-05-08 00:02:33 -04:00
|
|
|
EnvironmentFile=-/etc/default/{{ svc_name }}
|
2019-05-07 23:58:35 -04:00
|
|
|
User={{ user }}
|
|
|
|
Group={{ user }}
|
|
|
|
Restart=on-failure
|
2019-05-08 00:02:33 -04:00
|
|
|
ExecStart=/opt/prometheus/{{ exporter }}/bin/{{ svc_name }} \
|
2019-05-07 23:58:35 -04:00
|
|
|
{% if svc_args is string %}{{ svc_args }}{% else %}
|
|
|
|
{% for svc_arg in svc_args %} {{ svc_arg }}{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|