2021-01-29 04:29:25 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=matrix-prometheus
|
|
|
|
{% for service in matrix_prometheus_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_prometheus_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 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-prometheus 2>/dev/null || true'
|
2021-01-29 04:29:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-prometheus \
|
|
|
|
--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 04:29:25 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
|
|
|
{% if matrix_prometheus_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_prometheus_container_http_host_bind_port }}:9090 \
|
|
|
|
{% endif %}
|
|
|
|
-v {{ matrix_prometheus_config_path }}:/etc/prometheus:z \
|
|
|
|
-v {{ matrix_prometheus_data_path }}:/prometheus:z \
|
|
|
|
{% for arg in matrix_prometheus_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2022-06-26 09:01:57 +00:00
|
|
|
{{ matrix_prometheus_docker_image }} {{ matrix_prometheus_process_arguments|join(' ') }}
|
2021-01-29 04:29:25 +00:00
|
|
|
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-prometheus 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-prometheus 2>/dev/null || true'
|
2021-01-29 04:29:25 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-prometheus
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|