clarify metric setup to use 'scrape_configs' section of yaml and use an array for target

This commit is contained in:
Sean Enck 2017-04-21 11:03:32 -04:00
parent cea7839911
commit 719aec4064
No known key found for this signature in database
GPG key ID: F08D2E576641A175

View file

@ -21,13 +21,12 @@ How to monitor Synapse metrics using Prometheus
3. Add a prometheus target for synapse.
It needs to set the ``metrics_path`` to a non-default value::
It needs to set the ``metrics_path`` to a non-default value (under ``scrape_configs``)::
- job_name: "synapse"
metrics_path: "/_synapse/metrics"
static_configs:
- targets:
"my.server.here:9092"
- 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``.