2013-04-30 23:58:59 +02:00
|
|
|
from __future__ import absolute_import
|
2015-11-01 17:11:06 +01:00
|
|
|
from __future__ import print_function
|
2013-04-30 23:58:59 +02:00
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.models import UserPresence, UserActivity
|
|
|
|
from zerver.lib.utils import statsd, statsd_key
|
2013-04-30 23:58:59 +02:00
|
|
|
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
from collections import defaultdict
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
help = """Sends active user statistics to statsd.
|
|
|
|
|
|
|
|
Run as a cron job that runs every 10 minutes."""
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
# Get list of all active users in the last 1 week
|
|
|
|
cutoff = datetime.now() - timedelta(minutes=30, hours=168)
|
|
|
|
|
|
|
|
users = UserPresence.objects.select_related().filter(timestamp__gt=cutoff)
|
|
|
|
|
2013-05-03 16:22:28 +02:00
|
|
|
# Calculate 10min, 2hrs, 12hrs, 1day, 2 business days (TODO business days), 1 week bucket of stats
|
|
|
|
hour_buckets = [0.16, 2, 12, 24, 48, 168]
|
2016-01-26 02:44:57 +01:00
|
|
|
user_info = defaultdict(dict) # type: Dict[str, Dict[float, List[str]]]
|
2013-04-30 23:58:59 +02:00
|
|
|
|
|
|
|
for last_presence in users:
|
|
|
|
if last_presence.status == UserPresence.IDLE:
|
|
|
|
known_active = last_presence.timestamp - timedelta(minutes=30)
|
|
|
|
else:
|
|
|
|
known_active = last_presence.timestamp
|
|
|
|
|
|
|
|
for bucket in hour_buckets:
|
|
|
|
if not bucket in user_info[last_presence.user_profile.realm.domain]:
|
|
|
|
user_info[last_presence.user_profile.realm.domain][bucket] = []
|
|
|
|
if datetime.now(known_active.tzinfo) - known_active < timedelta(hours=bucket):
|
|
|
|
user_info[last_presence.user_profile.realm.domain][bucket].append(last_presence.user_profile.email)
|
|
|
|
|
|
|
|
for realm, buckets in user_info.items():
|
2015-12-01 17:11:16 +01:00
|
|
|
print("Realm %s" % (realm,))
|
2013-04-30 23:58:59 +02:00
|
|
|
for hr, users in sorted(buckets.items()):
|
|
|
|
print("\tUsers for %s: %s" % (hr, len(users)))
|
2016-05-04 23:19:13 +02:00
|
|
|
statsd.gauge("users.active.%s.%shr" % (statsd_key(realm, True), statsd_key(hr, True)), len(users))
|
2013-04-30 23:58:59 +02:00
|
|
|
|
2013-05-13 19:18:50 +02:00
|
|
|
# Also do stats for how many users have been reading the app.
|
2016-04-01 12:16:09 +02:00
|
|
|
users_reading = UserActivity.objects.select_related().filter(query="/json/messages/flags")
|
2013-05-23 19:23:48 +02:00
|
|
|
user_info = defaultdict(dict)
|
2013-05-13 19:18:50 +02:00
|
|
|
for activity in users_reading:
|
|
|
|
for bucket in hour_buckets:
|
|
|
|
if not bucket in user_info[activity.user_profile.realm.domain]:
|
|
|
|
user_info[activity.user_profile.realm.domain][bucket] = []
|
|
|
|
if datetime.now(activity.last_visit.tzinfo) - activity.last_visit < timedelta(hours=bucket):
|
|
|
|
user_info[activity.user_profile.realm.domain][bucket].append(activity.user_profile.email)
|
|
|
|
for realm, buckets in user_info.items():
|
2015-12-01 17:11:16 +01:00
|
|
|
print("Realm %s" % (realm,))
|
2013-05-13 19:18:50 +02:00
|
|
|
for hr, users in sorted(buckets.items()):
|
|
|
|
print("\tUsers reading for %s: %s" % (hr, len(users)))
|
2016-05-04 23:19:13 +02:00
|
|
|
statsd.gauge("users.reading.%s.%shr" % (statsd_key(realm, True), statsd_key(hr, True)), len(users))
|