diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-07-19 16:14:02 +0200 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2022-07-19 16:14:02 +0200 |
commit | 47822fd2e863719175ff512ce3e0234135d72ebf (patch) | |
tree | 8e251812da29d36348f23292b08282484e9bd15e /docs/usage/configuration/config_documentation.md | |
parent | Reduce memory usage of state group cache (#13323) (diff) | |
parent | Improve precision on validation improvements (diff) | |
download | synapse-47822fd2e863719175ff512ce3e0234135d72ebf.tar.xz |
Merge branch 'master' into develop
Diffstat (limited to 'docs/usage/configuration/config_documentation.md')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 995c5052f1..53e077d85b 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -2429,9 +2429,14 @@ metrics_flags: --- ### `report_stats` -Whether or not to report anonymized homeserver usage statistics. This is originally +Whether or not to report homeserver usage statistics. This is originally set when generating the config. Set this option to true or false to change the current -behavior. +behavior. See +[Reporting Homeserver Usage Statistics](../administration/monitoring/reporting_homeserver_usage_statistics.md) +for information on what data is reported. + +Statistics will be reported 5 minutes after Synapse starts, and then every 3 hours +after that. Example configuration: ```yaml @@ -2440,7 +2445,7 @@ report_stats: true --- ### `report_stats_endpoint` -The endpoint to report the anonymized homeserver usage statistics to. +The endpoint to report homeserver usage statistics to. Defaults to https://matrix.org/report-usage-stats/push Example configuration: |