2021-10-20 12:31:49 +02:00
|
|
|
global:
|
|
|
|
scrape_interval: 5s
|
|
|
|
|
|
|
|
# Attach these labels to any time series or alerts when communicating with
|
|
|
|
# external systems (federation, remote storage, Alertmanager).
|
|
|
|
external_labels:
|
|
|
|
monitor: 'synapse-{{ matrix_domain }}'
|
|
|
|
|
|
|
|
rule_files:
|
|
|
|
- /etc/prometheus/synapse-v2.rules
|
|
|
|
|
|
|
|
scrape_configs:
|
|
|
|
- job_name: 'synapse'
|
2022-06-23 16:44:11 +02:00
|
|
|
metrics_path: /metrics/synapse/main-process
|
2024-01-12 12:01:06 +01:00
|
|
|
scheme: https
|
2024-01-14 09:23:55 +01:00
|
|
|
{% if matrix_synapse_container_labels_public_metrics_middleware_basic_auth_enabled|default(true) %}
|
2021-10-20 12:31:49 +02:00
|
|
|
basic_auth:
|
|
|
|
username: prometheus
|
|
|
|
password_file: /path/to/your/passwordfile.pwd
|
|
|
|
{% endif %}
|
|
|
|
static_configs:
|
2024-01-12 12:01:06 +01:00
|
|
|
- targets: ['{{ matrix_synapse_metrics_proxying_hostname }}:443']
|
2021-10-20 12:31:49 +02:00
|
|
|
labels:
|
|
|
|
job: "master"
|
2022-03-17 18:37:37 +01:00
|
|
|
index: "0"
|
2022-06-23 16:44:11 +02:00
|
|
|
{% for worker in matrix_synapse_workers_enabled_list %}
|
2022-09-15 06:05:25 +02:00
|
|
|
- job_name: '{{ worker.name }}'
|
|
|
|
metrics_path: /metrics/synapse/worker/{{ worker.id }}
|
2024-01-12 12:01:06 +01:00
|
|
|
scheme: https
|
2024-01-14 09:29:38 +01:00
|
|
|
{% if matrix_synapse_worker_container_labels_public_metrics_middleware_basic_auth_enabled|default(true) %}
|
2021-10-20 12:31:49 +02:00
|
|
|
basic_auth:
|
|
|
|
username: prometheus
|
|
|
|
password_file: /path/to/your/passwordfile.pwd
|
|
|
|
{% endif %}
|
|
|
|
static_configs:
|
2024-01-12 12:01:06 +01:00
|
|
|
- targets: ['{{ matrix_synapse_metrics_proxying_hostname }}:443']
|
2021-10-20 12:31:49 +02:00
|
|
|
labels:
|
2022-09-15 06:05:25 +02:00
|
|
|
worker_id: {{ worker.id }}
|
2021-10-20 12:31:49 +02:00
|
|
|
job: "{{ worker.type }}"
|
2022-09-15 06:05:25 +02:00
|
|
|
app: {{ worker.app }}
|
2021-10-20 12:31:49 +02:00
|
|
|
{% endfor %}
|