summary refs log tree commit diff
path: root/synapse/app/homeserver.py
diff options
context:
space:
mode:
authorNeil Johnson <neil@fragile.org.uk>2018-03-28 12:25:02 +0100
committerNeil Johnson <neil@fragile.org.uk>2018-03-28 12:25:02 +0100
commit792d340572026becf48fe73421f0b73cf575fe46 (patch)
tree38e47aa689755a207554fcee74bdac95fde10768 /synapse/app/homeserver.py
parentAdd user_ips last seen index (diff)
downloadsynapse-792d340572026becf48fe73421f0b73cf575fe46.tar.xz
rename stat to future proof
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-xsynapse/app/homeserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index 8bce9f1ace..286f4dcf7b 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -425,7 +425,7 @@ def run(hs):
         stats["daily_active_rooms"] = yield hs.get_datastore().count_daily_active_rooms()
         stats["daily_messages"] = yield hs.get_datastore().count_daily_messages()
 
-        stats["r30_users"] = yield hs.get_datastore().count_r30_users()
+        stats["r30_users_all"] = yield hs.get_datastore().count_r30_users()
 
         daily_sent_messages = yield hs.get_datastore().count_daily_sent_messages()
         stats["daily_sent_messages"] = daily_sent_messages