forked from MirrorHub/synapse
Add python_version phone home stat
This commit is contained in:
parent
c9c50284d7
commit
2b39494cd5
1 changed files with 2 additions and 0 deletions
|
@ -457,6 +457,8 @@ def run(hs):
|
|||
stats["homeserver"] = hs.config.server_name
|
||||
stats["timestamp"] = now
|
||||
stats["uptime_seconds"] = uptime
|
||||
version = sys.version_info
|
||||
stats["python_version"] = (version.major) + (version.minor / 10) + (version.micro / 100)
|
||||
stats["total_users"] = yield hs.get_datastore().count_all_users()
|
||||
|
||||
total_nonbridged_users = yield hs.get_datastore().count_nonbridged_users()
|
||||
|
|
Loading…
Reference in a new issue