mysqld instead of mysql

This commit is contained in:
Ludovic Cartier
2021-05-26 17:11:20 +02:00
parent 44417b476f
commit 9864604f66
2 changed files with 3 additions and 3 deletions

View File

@ -44,13 +44,13 @@ scrape_configs:
{% endif %}
{% endif %}
{% if 'mysql' in prometheus_exporter_packages %}
{% if 'mysqld' in prometheus_exporter_packages %}
- job_name: mysql
scrape_interval: 30s
scrape_timeout: 10s
static_configs:
- targets:
{% if prometheus_mysql_exporter_targets is defined %}
{% if prometheus_mysqld_exporter_targets is defined %}
{% for target in prometheus_mysqld_exporter_targets %}
- {{ target }}:9104
{% endfor %}