diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-04-27 21:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 21:36:47 +0200 |
commit | 036fab5d8adc8fbafc6cdca5a29c7361b697a6e2 (patch) | |
tree | e2ac25dd69d9142425954b79d944e664c864d4e9 /docs | |
parent | Add some explanation to application_services.md (#7091) (diff) | |
download | synapse-036fab5d8adc8fbafc6cdca5a29c7361b697a6e2.tar.xz |
Document monitoring workers (#7357)
It doesn't seem to be documented anywhere and means that you suddenly start losing metrics without any obvious reason when you go from monolith to workers (e.g. #7312).
Diffstat (limited to 'docs')
-rw-r--r-- | docs/metrics-howto.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/metrics-howto.md b/docs/metrics-howto.md index 32abb9f44e..cf69938a2a 100644 --- a/docs/metrics-howto.md +++ b/docs/metrics-howto.md @@ -60,6 +60,31 @@ 1. Restart Prometheus. +## Monitoring workers + +To monitor a Synapse installation using +[workers](https://github.com/matrix-org/synapse/blob/master/docs/workers.md), +every worker needs to be monitored independently, in addition to +the main homeserver process. This is because workers don't send +their metrics to the main homeserver process, but expose them +directly (if they are configured to do so). + +To allow collecting metrics from a worker, you need to add a +`metrics` listener to its configuration, by adding the following +under `worker_listeners`: + +```yaml + - type: metrics + bind_address: '' + port: 9101 +``` + +The `bind_address` and `port` parameters should be set so that +the resulting listener can be reached by prometheus, and they +don't clash with an existing worker. +With this example, the worker's metrics would then be available +on `http://127.0.0.1:9101`. + ## Renaming of metrics & deprecation of old names in 1.2 Synapse 1.2 updates the Prometheus metrics to match the naming |