add exporter for opensearch
This commit is contained in:
parent
f655a0fc6e
commit
7094cb13ee
@ -15,6 +15,7 @@ The present role :
|
|||||||
- mysql
|
- mysql
|
||||||
- postgres
|
- postgres
|
||||||
- mongodb
|
- mongodb
|
||||||
|
- opensearch (via plugin for opensearch https://github.com/aiven/prometheus-exporter-plugin-for-opensearch)
|
||||||
|
|
||||||
Please note that Docker and Haproxy their own embedded exporters.
|
Please note that Docker and Haproxy their own embedded exporters.
|
||||||
- https://docs.docker.com/config/daemon/prometheus/
|
- https://docs.docker.com/config/daemon/prometheus/
|
||||||
|
2645
files/dashboards/opensearch.json
Normal file
2645
files/dashboards/opensearch.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -85,6 +85,16 @@
|
|||||||
when: prometheus_cadvisor_exporter_targets is defined
|
when: prometheus_cadvisor_exporter_targets is defined
|
||||||
notify: "grafana-prometheus-restart"
|
notify: "grafana-prometheus-restart"
|
||||||
|
|
||||||
|
- name: "grafana-prometheus | import grafana opensearch dashboard"
|
||||||
|
copy:
|
||||||
|
src: dashboards/opensearch.json
|
||||||
|
dest: /opt/docker-compose/grafana-prometheus/dashboards/opensearch.json
|
||||||
|
owner: '1000'
|
||||||
|
group: '1000'
|
||||||
|
mode: '0750'
|
||||||
|
when: prometheus_opensearch_exporter_targets is defined
|
||||||
|
notify: "grafana-prometheus-restart"
|
||||||
|
|
||||||
- name: "grafana-prometheus | import grafana haproxy dashboard"
|
- name: "grafana-prometheus | import grafana haproxy dashboard"
|
||||||
copy:
|
copy:
|
||||||
src: dashboards/haproxy.json
|
src: dashboards/haproxy.json
|
||||||
|
@ -404,3 +404,19 @@ scrape_configs:
|
|||||||
regex: '(.*):9221'
|
regex: '(.*):9221'
|
||||||
replacement: '${1}'
|
replacement: '${1}'
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if prometheus_opensearch_exporter_targets is defined %}
|
||||||
|
# opensearch #
|
||||||
|
- job_name: opensearch
|
||||||
|
scrape_interval: 30s
|
||||||
|
metrics_path: "/_prometheus/metrics"
|
||||||
|
static_configs:
|
||||||
|
- targets:
|
||||||
|
{% for target in prometheus_opensearch_exporter_targets %}
|
||||||
|
- {{ target }}:9200
|
||||||
|
{% endfor %}
|
||||||
|
relabel_configs:
|
||||||
|
- source_labels: [ __address__ ]
|
||||||
|
target_label: instance
|
||||||
|
regex: '(.*):9200'
|
||||||
|
replacement: '${1}'
|
||||||
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user