mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 12:47:39 +01:00
Add worker metrics to prometheus exporter
This commit is contained in:
parent
154c2bbe36
commit
7b52e6ad5e
@ -30,7 +30,15 @@ scrape_configs:
|
||||
- job_name: 'synapse'
|
||||
metrics_path: '/_synapse/metrics'
|
||||
static_configs:
|
||||
- targets: {{ matrix_prometheus_scraper_synapse_targets|to_json }}
|
||||
- targets:
|
||||
{% for target in matrix_prometheus_scraper_synapse_targets %}
|
||||
- {{ target }}
|
||||
{% endfor %}
|
||||
{% for worker in matrix_synapse_workers_enabled_list|d([]) %}
|
||||
{% if worker.metrics_port != 0 %}
|
||||
- 'matrix-synapse-worker-{{ worker.type }}-{{ worker.instanceId }}:{{ worker.metrics_port }}'
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if matrix_prometheus_scraper_node_enabled %}
|
||||
@ -43,4 +51,4 @@ scrape_configs:
|
||||
- job_name: postgres
|
||||
static_configs:
|
||||
- targets: {{ matrix_prometheus_scraper_postgres_targets|to_json }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user