summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-05-22 18:09:09 +0100
committerNeil Johnson <neil@matrix.org>2018-05-22 18:09:09 +0100
commitd8cb7225d2902ae3dd7fbcd1b3b2ebd084d81ca4 (patch)
tree0aa6b73a88dcdd9c41132d2ef0c7a7f949e34ee4 /synapse/app
parentMerge pull request #3262 from matrix-org/rav/has_already_consented (diff)
downloadsynapse-d8cb7225d2902ae3dd7fbcd1b3b2ebd084d81ca4.tar.xz
daily user type phone home stats
Diffstat (limited to 'synapse/app')
-rwxr-xr-xsynapse/app/homeserver.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index caccbaa814..026422a023 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -434,6 +434,10 @@ def run(hs):
         total_nonbridged_users = yield hs.get_datastore().count_nonbridged_users()
         stats["total_nonbridged_users"] = total_nonbridged_users
 
+        daily_user_type_results = yield hs.get_datastore().count_daily_user_type()
+        for name, count in daily_user_type_results.iteritems():
+            stats["daily_user_type_" + name] = count
+
         room_count = yield hs.get_datastore().get_room_count()
         stats["total_room_count"] = room_count