MatrixSynapse/contrib/prometheus/README.md

45 lines
946 B
Markdown
Raw Normal View History

This directory contains some sample monitoring config for using the
'Prometheus' monitoring server against synapse.
To use it, first install prometheus by following the instructions at
http://prometheus.io/
### for Prometheus v1
2019-01-30 18:32:33 +01:00
Add a new job to the main prometheus.conf file:
2019-01-30 18:32:33 +01:00
```yaml
job: {
name: "synapse"
target_group: {
target: "http://SERVER.LOCATION.HERE:PORT/_synapse/metrics"
}
}
2019-01-30 18:32:33 +01:00
```
### for Prometheus v2
Add a new job to the main prometheus.yml file:
2019-01-30 18:32:33 +01:00
```yaml
2017-11-07 13:35:35 +01:00
- job_name: "synapse"
metrics_path: "/_synapse/metrics"
# when endpoint uses https:
scheme: "https"
2017-11-07 13:35:35 +01:00
static_configs:
- targets: ['SERVER.LOCATION:PORT']
2019-01-30 18:32:33 +01:00
```
2017-11-07 13:35:35 +01:00
To use `synapse.rules` add
2019-01-30 18:32:33 +01:00
```yaml
2017-11-07 13:35:35 +01:00
rule_files:
- "/PATH/TO/synapse-v2.rules"
2019-01-30 18:32:33 +01:00
```
Metrics are disabled by default when running synapse; they must be enabled
with the 'enable-metrics' option, either in the synapse config file or as a
command-line option.