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=prometheus
|
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
|
2020-11-30 21:52:47 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm --storage prometheus
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2020-07-21 21:32:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm -f prometheus
|
2019-11-26 22:26:35 +08:00
|
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --name=prometheus \
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
2020-10-22 22:59:15 +08:00
|
|
|
-d --log-driver journald --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2019-05-16 16:56:06 +08:00
|
|
|
-v "{{ prometheus_conf_dir }}:/etc/prometheus:Z" \
|
|
|
|
-v "{{ prometheus_data_dir }}:/prometheus:Z" \
|
|
|
|
--net=host \
|
|
|
|
--user={{ prometheus_user_id }} \
|
|
|
|
--cpu-period={{ prometheus_container_cpu_period }} \
|
|
|
|
--cpu-quota={{ prometheus_container_cpu_period * prometheus_container_cpu_cores }} \
|
|
|
|
--memory={{ prometheus_container_memory }}GB \
|
|
|
|
--memory-swap={{ prometheus_container_memory * 2 }}GB \
|
|
|
|
{{ prometheus_container_image }} \
|
|
|
|
--config.file=/etc/prometheus/prometheus.yml \
|
|
|
|
--storage.tsdb.path=/prometheus \
|
2021-03-30 15:49:10 +08:00
|
|
|
{% if prometheus_storage_tsdb_retention_time is defined %}
|
|
|
|
--storage.tsdb.retention.time={{ prometheus_storage_tsdb_retention_time }} \
|
|
|
|
{% endif %}
|
2021-03-03 22:43:50 +08:00
|
|
|
--web.external-url=http://{{ ansible_facts['fqdn'] }}:{{ prometheus_port }}/ \
|
2020-02-12 20:58:59 +08:00
|
|
|
--web.listen-address={{ grafana_server_addr }}:{{ prometheus_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 prometheus
|
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
|