2018-12-06 02:59:47 +08:00
|
|
|
# This file is managed by ansible, don't make changes here - they will be
|
|
|
|
# overwritten.
|
|
|
|
[Unit]
|
|
|
|
Description=Node Exporter
|
2019-04-08 21:40:25 +08:00
|
|
|
{% if container_binary == 'docker' %}
|
2018-12-06 02:59:47 +08:00
|
|
|
After=docker.service
|
2020-06-23 01:58:10 +08:00
|
|
|
Requires=docker.service
|
2019-06-07 03:41:35 +08:00
|
|
|
{% else %}
|
|
|
|
After=network.target
|
2019-04-08 21:40:25 +08:00
|
|
|
{% endif %}
|
2018-12-06 02:59:47 +08:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
EnvironmentFile=-/etc/environment
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
ExecStartPre=-/usr/bin/rm -f /%t/%n-pid /%t/%n-cid
|
|
|
|
{% endif %}
|
2020-07-21 21:32:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm -f node-exporter
|
2019-11-26 22:26:35 +08:00
|
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --name=node-exporter \
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
-d --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \
|
|
|
|
{% endif %}
|
2019-12-03 21:39:53 +08:00
|
|
|
--privileged \
|
2019-05-16 16:56:06 +08:00
|
|
|
-v /proc:/host/proc:ro -v /sys:/host/sys:ro \
|
|
|
|
--net=host \
|
2019-06-11 22:46:35 +08:00
|
|
|
{{ node_exporter_container_image }} \
|
2019-05-16 16:56:06 +08:00
|
|
|
--path.procfs=/host/proc \
|
|
|
|
--path.sysfs=/host/sys \
|
2019-07-11 05:15:45 +08:00
|
|
|
--no-collector.timex \
|
|
|
|
--web.listen-address=:{{ node_exporter_port }}
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
ExecStop=-/usr/bin/sh -c "/usr/bin/{{ container_binary }} rm -f `cat /%t/%n-cid`"
|
|
|
|
{% else %}
|
2019-04-08 21:40:25 +08:00
|
|
|
ExecStop=-/usr/bin/{{ container_binary }} stop node-exporter
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2020-02-11 23:09:51 +08:00
|
|
|
KillMode=none
|
2018-12-06 02:59:47 +08:00
|
|
|
Restart=always
|
|
|
|
RestartSec=10s
|
|
|
|
TimeoutStartSec=120
|
|
|
|
TimeoutStopSec=15
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
Type=forking
|
|
|
|
PIDFile=/%t/%n-pid
|
|
|
|
{% endif %}
|
2018-12-06 02:59:47 +08:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|