2021-01-29 04:29:25 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
global:
|
|
|
|
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
|
|
|
|
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
|
|
|
|
# scrape_timeout is set to the global default (10s).
|
|
|
|
|
|
|
|
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
|
|
|
|
rule_files:
|
2021-01-31 17:23:12 +00:00
|
|
|
{% if matrix_prometheus_scraper_synapse_rules_enabled %}
|
2021-01-29 04:29:25 +00:00
|
|
|
- 'synapse-v2.rules'
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
# A scrape configuration containing exactly one endpoint to scrape:
|
|
|
|
# Here it's Prometheus itself.
|
|
|
|
scrape_configs:
|
|
|
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
|
|
|
- job_name: 'prometheus'
|
|
|
|
|
|
|
|
# Override the global default and scrape targets from this job every 5 seconds.
|
|
|
|
scrape_interval: 5s
|
|
|
|
scrape_timeout: 5s
|
|
|
|
|
|
|
|
# metrics_path defaults to '/metrics'
|
|
|
|
# scheme defaults to 'http'.
|
|
|
|
|
|
|
|
static_configs:
|
|
|
|
- targets: ['localhost:9090']
|
|
|
|
|
2021-01-31 17:23:12 +00:00
|
|
|
{% if matrix_prometheus_scraper_synapse_enabled %}
|
2021-01-29 04:29:25 +00:00
|
|
|
- job_name: 'synapse'
|
|
|
|
metrics_path: '/_synapse/metrics'
|
|
|
|
static_configs:
|
2021-06-30 21:30:18 +00:00
|
|
|
- targets: {{ matrix_prometheus_scraper_synapse_targets|to_json }}
|
|
|
|
labels:
|
|
|
|
instance: {{ matrix_domain }}
|
|
|
|
job: master
|
2021-06-30 21:32:19 +00:00
|
|
|
index: 0
|
2021-07-02 15:41:36 +00:00
|
|
|
{% for worker in matrix_prometheus_scraper_synapse_workers_enabled_list %}
|
2021-06-30 21:30:18 +00:00
|
|
|
{% if worker.metrics_port != 0 %}
|
|
|
|
- targets: ['matrix-synapse-worker-{{ worker.type }}-{{ worker.instanceId }}:{{ worker.metrics_port }}']
|
|
|
|
labels:
|
|
|
|
instance: {{ matrix_domain }}
|
|
|
|
job: {{ worker.type }}
|
|
|
|
index: {{ worker.instanceId }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2021-01-29 04:29:25 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2021-01-31 16:26:08 +00:00
|
|
|
{% if matrix_prometheus_scraper_node_enabled %}
|
2021-01-29 05:17:45 +00:00
|
|
|
- job_name: node
|
|
|
|
static_configs:
|
2021-01-31 16:26:08 +00:00
|
|
|
- targets: {{ matrix_prometheus_scraper_node_targets|to_json }}
|
2021-01-29 05:17:45 +00:00
|
|
|
{% endif %}
|
2021-05-27 19:13:29 +00:00
|
|
|
|
|
|
|
{% if matrix_prometheus_scraper_postgres_enabled %}
|
|
|
|
- job_name: postgres
|
|
|
|
static_configs:
|
|
|
|
- targets: {{ matrix_prometheus_scraper_postgres_targets|to_json }}
|
2021-06-30 20:52:49 +00:00
|
|
|
{% endif %}
|