2018-04-16 12:54:20 +02:00
|
|
|
# my global config
|
|
|
|
global:
|
|
|
|
scrape_interval: %%prometheusScrapeInterval
|
|
|
|
evaluation_interval: %%prometheusEvaluationInterval
|
|
|
|
scrape_timeout: %%prometheusScrapeTimeout
|
|
|
|
|
|
|
|
rule_files:
|
|
|
|
- "/etc/prometheus/rules.d/*.yml"
|
|
|
|
|
|
|
|
scrape_configs:
|
2018-04-17 12:32:05 +02:00
|
|
|
- job_name: %%prometheusJobName
|
|
|
|
honor_labels: true
|
2018-04-16 12:54:20 +02:00
|
|
|
|
|
|
|
static_configs:
|
2018-04-17 12:32:05 +02:00
|
|
|
- targets: ['%%nom_domaine_machine:9090']
|
|
|
|
%if %%getVar('ajout_client_prometheus','non') == 'oui'
|
|
|
|
%if not %%is_empty(%%url_nouveau_client_prometheus)
|
|
|
|
%for %%client_prometheus in %%url_nouveau_client_prometheus
|
2018-05-24 15:44:19 +02:00
|
|
|
- targets: ['%%client_prometheus.%%url_nouveau_client_prometheus:9100']
|
2018-04-17 12:32:05 +02:00
|
|
|
%end for
|
|
|
|
%end if
|
|
|
|
%end if
|
|
|
|
|
|
|
|
- job_name: '%%job_name_node'
|
|
|
|
file_sd_configs:
|
|
|
|
- files: [ "%%job_file_config/*.yml" ]
|
|
|
|
|
|
|
|
|
|
|
|
#alerting:
|
|
|
|
# alertmanagers:
|
|
|
|
# - scheme: https
|
|
|
|
# static_configs:
|
|
|
|
# - targets:
|
|
|
|
# - "1.2.3.4:9093"
|
|
|
|
# - "1.2.3.5:9093"
|
|
|
|
# - "1.2.3.6:9093"
|