Merge pull request #1 from tchivert/master

Add proxysql exporter handling
This commit is contained in:
Ludovic Cartier
2022-03-16 18:03:21 +01:00
committed by GitHub
2 changed files with 19 additions and 0 deletions

View File

@ -248,3 +248,20 @@ scrape_configs:
- {{ target }}:9121
{% endfor %}
{% endif %}
{% if prometheus_proxysql_exporter_targets is defined %}
# ProxySQL exporter #
- job_name: proxysql
scrape_interval: 30s
scrape_timeout: 10s
static_configs:
- targets:
{% for target in prometheus_proxysql_exporter_targets %}
- {{ target }}:6070
relabel_configs:
- source_labels: [ __address__ ]
target_label: instance
regex: '(.*):6070'
replacement: '${1}'
{% endfor %}
{% endif %}