Add proxysql exporter handling

This commit is contained in:
tom.chivert
2021-12-01 18:16:45 +01:00
parent 01f410ba93
commit d1b78de416
2 changed files with 19 additions and 0 deletions

View File

@ -216,3 +216,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 %}