2021-01-29 05:17:45 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=matrix-prometheus-node-exporter
|
|
|
|
{% for service in matrix_prometheus_node_exporter_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_prometheus_node_exporter_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
DefaultDependencies=no
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-prometheus-node-exporter 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-prometheus-node-exporter 2>/dev/null || true'
|
2021-01-29 05:17:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-prometheus-node-exporter \
|
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2021-01-31 15:34:32 +00:00
|
|
|
--read-only \
|
2021-01-29 05:17:45 +00:00
|
|
|
{% for arg in matrix_prometheus_node_exporter_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2021-04-19 15:27:11 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
|
|
|
{% if matrix_prometheus_node_exporter_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_prometheus_node_exporter_container_http_host_bind_port }}:9100 \
|
|
|
|
{% endif %}
|
2021-01-31 09:41:22 +00:00
|
|
|
--pid=host \
|
|
|
|
--mount type=bind,src=/,dst=/host,ro,bind-propagation=rslave \
|
2021-01-29 11:23:59 +00:00
|
|
|
{{ matrix_prometheus_node_exporter_docker_image }} \
|
2022-06-23 17:37:56 +00:00
|
|
|
--path.rootfs=/host {{ matrix_prometheus_node_exporter_process_extra_arguments|join(' ') }}
|
2021-01-29 05:17:45 +00:00
|
|
|
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-prometheus-node-exporter 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-prometheus-node-exporter 2>/dev/null || true'
|
2021-01-29 05:17:45 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-prometheus-node-exporter
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|