diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index 6af8259be07fe5570417d5e41ca2d54b3ef4d85d..081e7cce5998ab04c1e35886df0ba1ef07738ccb 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -415,7 +415,9 @@ def run(hs):
         stats["timestamp"] = now
         stats["uptime_seconds"] = uptime
         stats["total_users"] = yield hs.get_datastore().count_all_users()
-        stats["total_users"] = yield hs.get_datastore().count_nonbridged_users()
+
+        total_nonbridged_users = yield hs.get_datastore().count_nonbridged_users()
+        stats["total_nonbridged_users"] = total_nonbridged_users
 
         room_count = yield hs.get_datastore().get_room_count()
         stats["total_room_count"] = room_count