add elasticsearch configuration and systemd

This commit is contained in:
jean-yves.fournier
2025-05-19 12:00:07 +02:00
parent 0799a41a01
commit 4903dc467d
3 changed files with 29 additions and 0 deletions

View File

@ -515,3 +515,19 @@ scrape_configs:
{% endfor %}
{% endif %}
{% if prometheus_elasticsearch_exporter_targets is defined %}
# Elasticsearch #
- job_name: elasticsearch
scrape_interval: 30s
static_configs:
- targets:
{% for target in prometheus_elasticsearch_exporter_targets %}
- {{ target }}:9221
{% endfor %}
relabel_configs:
- source_labels: [ __address__ ]
target_label: instance
regex: '(.*):9114'
replacement: '${1}'
{% endif %}