mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-25 21:30:24 +00:00
818d67cd2e
Update prometheus role for 3.0.0. * Update argument_specs.yml to reflect support of 3.x. * Skip console templates on 3.x. Fixes: https://github.com/prometheus-community/ansible/issues/460 Signed-off-by: SuperQ <superq@gmail.com>
95 lines
2.9 KiB
Django/Jinja
95 lines
2.9 KiB
Django/Jinja
{{ ansible_managed | comment }}
|
|
|
|
[Unit]
|
|
Description=Prometheus
|
|
After=network-online.target
|
|
Requires=local-fs.target
|
|
After=local-fs.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment="GOMAXPROCS={{ ansible_processor_vcpus|default(ansible_processor_count) }}"
|
|
User={{ prometheus_system_user }}
|
|
Group={{ prometheus_system_group }}
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
ExecStart={{ prometheus_binary_install_dir }}/prometheus \
|
|
{% if not prometheus_agent_mode %}
|
|
--storage.tsdb.path={{ prometheus_db_dir }} \
|
|
{% if prometheus_version is version('2.7.0', '>=') %}
|
|
--storage.tsdb.retention.time={{ prometheus_storage_retention }} \
|
|
--storage.tsdb.retention.size={{ prometheus_storage_retention_size }} \
|
|
{% else %}
|
|
--storage.tsdb.retention={{ prometheus_storage_retention }} \
|
|
{% endif %}
|
|
{% else %}
|
|
{% if prometheus_version is version('3.0.0', '>=') %}
|
|
--agent \
|
|
{% else %}
|
|
--enable-feature=agent \
|
|
{% endif %}
|
|
--storage.agent.path={{ prometheus_db_dir }} \
|
|
{% endif %}
|
|
{% if (prometheus_version is version('2.24.0', '>=')) and (prometheus_web_config.values() | map('length') | select('gt', 0) | list is any) %}
|
|
--web.config.file={{ prometheus_config_dir }}/web_config.yml \
|
|
{% endif %}
|
|
--web.console.libraries={{ prometheus_config_dir }}/console_libraries \
|
|
--web.console.templates={{ prometheus_config_dir }}/consoles \
|
|
--web.listen-address={{ prometheus_web_listen_address }} \
|
|
--web.external-url={{ prometheus_web_external_url }} \
|
|
{% for flag, flag_value in prometheus_config_flags_extra.items() %}
|
|
{% if not flag_value %}
|
|
--{{ flag }} \
|
|
{% elif flag_value is string %}
|
|
--{{ flag }}={{ flag_value }} \
|
|
{% elif flag_value is sequence %}
|
|
{% for flag_value_item in flag_value %}
|
|
--{{ flag }}={{ flag_value_item }} \
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
--config.file={{ prometheus_config_dir }}/prometheus.yml
|
|
|
|
CapabilityBoundingSet=CAP_SET_UID
|
|
LimitNOFILE=65000
|
|
LockPersonality=true
|
|
NoNewPrivileges=true
|
|
MemoryDenyWriteExecute=true
|
|
PrivateDevices=true
|
|
PrivateTmp=true
|
|
ProtectHome=true
|
|
RemoveIPC=true
|
|
RestrictSUIDSGID=true
|
|
#SystemCallFilter=@signal @timer
|
|
|
|
{% if (ansible_facts.packages.systemd | first).version is version('231', '>=') %}
|
|
ReadWritePaths={{ prometheus_db_dir }}
|
|
{% for path in prometheus_read_only_dirs %}
|
|
ReadOnlyPaths={{ path }}
|
|
{% endfor %}
|
|
{% else %}
|
|
ReadWriteDirectories={{ prometheus_db_dir }}
|
|
{% for path in prometheus_read_only_dirs %}
|
|
ReadOnlyDirectories={{ path }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if (ansible_facts.packages.systemd | first).version is version('232', '>=') %}
|
|
PrivateUsers=true
|
|
ProtectControlGroups=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelTunables=true
|
|
ProtectSystem=strict
|
|
{% else %}
|
|
ProtectSystem=full
|
|
{% endif %}
|
|
|
|
{% if http_proxy is defined %}
|
|
Environment="HTTP_PROXY={{ http_proxy }}"{% if https_proxy is defined %} "HTTPS_PROXY={{ https_proxy }}{% endif %}"
|
|
{% endif %}
|
|
|
|
SyslogIdentifier=prometheus
|
|
Restart=always
|
|
TimeoutStopSec={{ prometheus_stop_timeout }}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|