Prometheus Node Exporter

Basic system stats, to show stuff the synapse metrics
can't show such as resource usage by bridges, etc

Seems to work fine as well.

This too has only been tested on debian amd64 so far
This commit is contained in:
Peetz0r
2021-01-29 06:17:45 +01:00
parent 13ef9e85cf
commit e525970b39
10 changed files with 171 additions and 3 deletions

View File

@ -33,3 +33,8 @@ scrape_configs:
- targets: ['matrix-synapse:{{ matrix_synapse_metrics_port }}']
{% endif %}
{% if matrix_prometheus_node_exporter_enabled %}
- job_name: node
static_configs:
- targets: ['matrix-prometheus-node-exporter:9100']
{% endif %}