diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-10 16:31:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 16:31:24 +0000 |
commit | b2dcddc4135b067b1ff37d65b18256ba294e462d (patch) | |
tree | 469ce283586e696cddf679735bdc7ea74d33b806 /synapse | |
parent | Fix race which caused deleted devices to reappear (#6514) (diff) | |
parent | Newsfile (diff) | |
download | synapse-b2dcddc4135b067b1ff37d65b18256ba294e462d.tar.xz |
Merge pull request #6510 from matrix-org/erikj/phone_home_stats_db
Phone home stats DB reporting should not assume a single DB.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/app/homeserver.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index df65d0a989..032010600a 100644 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -519,8 +519,10 @@ def phone_stats_home(hs, stats, stats_process=_stats_process): # Database version # - stats["database_engine"] = hs.database_engine.module.__name__ - stats["database_server_version"] = hs.database_engine.server_version + # This only reports info about the *main* database. + stats["database_engine"] = hs.get_datastore().db.engine.module.__name__ + stats["database_server_version"] = hs.get_datastore().db.engine.server_version + logger.info("Reporting stats to %s: %s" % (hs.config.report_stats_endpoint, stats)) try: yield hs.get_proxied_http_client().put_json( |