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
|
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 prometheus
|
2019-11-26 22:26:35 +08:00
|
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --name=prometheus \
|
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 \
|
2020-01-03 01:09:38 +08:00
|
|
|
--web.external-url=http://{{ ansible_fqdn }}:{{ prometheus_port }}/ \
|
2020-02-12 20:58:59 +08:00
|
|
|
--web.listen-address={{ grafana_server_addr }}:{{ prometheus_port }}
|
2019-04-08 21:40:25 +08:00
|
|
|
ExecStop=/usr/bin/{{ container_binary }} stop prometheus
|
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
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|