blob: 23bdc382ddc2ab5f1e9dadd4d65b04aef672fa44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
prometheus_ui_listen: ':9090'
prometheus_home_dir: /var/lib/prometheus
prometheus_data_dir: '{{prometheus_home_dir}}/data'
prometheus_retention_time: "730d"
prometheus_user: prometheus
prometheus_version: "2.7.2"
prometheus_os: "{{ansible_facts['system']|lower}}" # Should resolve to "linux"
prometheus_checksum: fca1b17bef8bd19c2ad90caf13d7ffa85e8c4655aa03315fb5e228bd06c4e0ae
prometheus_architecture: amd64
# https://github.com/prometheus/prometheus/releases/download/v2.7.2/prometheus-2.7.2.linux-amd64.tar.gz
prometheus_url: "https://github.com/prometheus/prometheus/releases/download/v{{prometheus_version}}/prometheus-{{prometheus_version}}.{{prometheus_os}}-{{prometheus_architecture}}.tar.gz"
prometheus_netdata_hosts:
- localhost:19999
# Only inserted into the template if defined
# prometheus_netdata_tls_hosts:
# - example.com:19443
|