diff options
author | Neil Johnson <neil@matrix.org> | 2019-06-10 23:33:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-10 23:33:59 +0100 |
commit | 94dac0f3e55938916ec76a2183d6703af6ea4362 (patch) | |
tree | 6390cf3c05861c3537478ccb724bf7a9654f9528 /synapse/app | |
parent | Merge branch 'release-v1.0.0' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-94dac0f3e55938916ec76a2183d6703af6ea4362.tar.xz |
add monthly active users to phonehome stats (#5252)
* add monthly active users to phonehome stats
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index df524a23dd..811b547dd3 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -541,6 +541,7 @@ def run(hs): stats["total_room_count"] = room_count stats["daily_active_users"] = yield hs.get_datastore().count_daily_users() + stats["monthly_active_users"] = yield hs.get_datastore().count_monthly_users() stats["daily_active_rooms"] = yield hs.get_datastore().count_daily_active_rooms() stats["daily_messages"] = yield hs.get_datastore().count_daily_messages() |