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
|
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
|
2019-05-16 16:56:06 +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 \
|
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 }}
|
2019-04-08 21:40:25 +08:00
|
|
|
ExecStop=-/usr/bin/{{ container_binary }} stop node-exporter
|
2018-12-06 02:59:47 +08:00
|
|
|
Restart=always
|
|
|
|
RestartSec=10s
|
|
|
|
TimeoutStartSec=120
|
|
|
|
TimeoutStopSec=15
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|