diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-02-19 23:06:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-19 23:06:08 +0000 |
commit | e556aefe0a0ac9e09429aed4436cd34aa6e586c0 (patch) | |
tree | 18264a7396ba9fae45b07256758ec36b90b7e2cf /docs | |
parent | Update metrics-howto.rst (diff) | |
download | synapse-e556aefe0a0ac9e09429aed4436cd34aa6e586c0.tar.xz |
Update metrics-howto.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/metrics-howto.rst | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/docs/metrics-howto.rst b/docs/metrics-howto.rst index 56e69c1859..231c680786 100644 --- a/docs/metrics-howto.rst +++ b/docs/metrics-howto.rst @@ -1,24 +1,27 @@ How to monitor Synapse metrics using Prometheus =============================================== -1: Install prometheus: - Follow instructions at http://prometheus.io/docs/introduction/install/ +1. Install prometheus: -2: Enable synapse metrics: - Simply setting a (local) port number will enable it. Pick a port. - prometheus itself defaults to 9090, so starting just above that for - locally monitored services seems reasonable. E.g. 9092: + Follow instructions at http://prometheus.io/docs/introduction/install/ - Add to homeserver.yaml:: +2. Enable synapse metrics: - metrics_port: 9092 + Simply setting a (local) port number will enable it. Pick a port. + prometheus itself defaults to 9090, so starting just above that for + locally monitored services seems reasonable. E.g. 9092: - Also ensure that ``enable_metrics`` is set to ``True``. + Add to homeserver.yaml:: + + metrics_port: 9092 + + Also ensure that ``enable_metrics`` is set to ``True``. - Restart synapse. + Restart synapse. -3: Add a prometheus target for synapse. It needs to set the ``metrics_path`` - to a non-default value:: +3. Add a prometheus target for synapse. + + It needs to set the ``metrics_path`` to a non-default value:: - job_name: "synapse" metrics_path: "/_synapse/metrics" @@ -26,6 +29,9 @@ How to monitor Synapse metrics using Prometheus - targets: "my.server.here:9092" + If your prometheus is older than 1.5.2, you will need to replace + ``static_configs`` in the above with ``target_groups``. + Standard Metric Names --------------------- |