mirror of https://github.com/ceph/ceph-ansible.git
30 lines
805 B
Django/Jinja
30 lines
805 B
Django/Jinja
# This file is managed by ansible, don't make changes here - they will be
|
|
# overwritten.
|
|
[Unit]
|
|
Description=Node Exporter
|
|
{% if container_binary == 'docker' %}
|
|
After=docker.service
|
|
{% else %}
|
|
After=network.target
|
|
{% endif %}
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/environment
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm -f node-exporter
|
|
ExecStart=/usr/bin/{{ container_binary }} run --name=node-exporter \
|
|
-v /proc:/host/proc:ro -v /sys:/host/sys:ro \
|
|
--net=host \
|
|
{{ node_exporter_container_image }} \
|
|
--path.procfs=/host/proc \
|
|
--path.sysfs=/host/sys \
|
|
--no-collector.timex \
|
|
--web.listen-address=:{{ node_exporter_port }}
|
|
ExecStop=-/usr/bin/{{ container_binary }} stop node-exporter
|
|
Restart=always
|
|
RestartSec=10s
|
|
TimeoutStartSec=120
|
|
TimeoutStopSec=15
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|