add haproxy scraping for use with builtin haproxy exporter

This commit is contained in:
2021-10-08 14:40:13 +02:00
parent 0f1624c55d
commit e01e571906
2 changed files with 33 additions and 22 deletions

View File

@ -96,3 +96,14 @@ scrape_configs:
- {{ target }}:9117
{% endfor %}
{% endif %}
{% if prometheus_haproxy_exporter_targets is defined %}
- job_name: haproxy
scrape_interval: 30s
scrape_timeout: 10s
static_configs:
- targets:
{% for target in prometheus_haproxy_exporter_targets %}
- {{ target }}:8404
{% endfor %}
{% endif %}