public ActionResult <List <int> > Activity(
            DateTime?utcFrom = null,
            DateTime?utcTo   = null
            )
        {
            DateTime toDate   = utcTo ?? DateTime.UtcNow;
            DateTime fromDate = utcFrom ?? toDate.AddHours(-24);

            return(_matchmakerLogService.ListPlayerCounts(fromDate, toDate) ?? new List <int>());
        }