django-tracking2
django-tracking2 copied to clipboard
Stat views wishlist
trafficstars
summary/dashboard - /
- [ ] supports start and end dates with GET params
- [ ] stats - visitor count, % returning, avg. time on site, avg. pages/visit
- [ ] registered user list - # visits, avg. time on site, avg. pages/visit
- [ ] pageviews - total, unique
visitor centric - /visitors/:id
- [ ] overview -
/- stats - # visits, avg. time on site, avg. pages/visit
- paginated list of visits with click-through to visit detail
- [ ] visit detail -
/visits/:id- info about a particular visit- stats - start/end time, duration, # pageviews, views/page, avg. time/page, ip, platform/browser
- paginated list of pageviews with click-through to pageview detail
- [ ] page detail -
/pages/:key- info about a particular page (across all visits)- stats - total views, avg. duration, avg. views/visit
- paginated list of all visits for this pa
- [ ] pageview detail -
/pageviews/:id- info about a page for a given visit- display url, request method (as of v0.1.9)
- stats - view time, duration (diff from next page view)
page/URL centric - /pages
- [ ] overview -
/- stats - total page views, total unique pages
- paginated list of pages with click-through to page detail
- [ ] page detail -
/:key(key could be encoded version of URL?)- stats - total views, avg. duration, # unique visitors
- paginated list of pageviews with click-through to
/visitors/:id/pages/:key
I encourage everyone to give feedback on this so we can make this hit all the major use cases.