django-request¶
django-request is a statistics module for django. It stores requests in a database for admins to see, it can also be used to get statistics on who is online etc.
As well as a site statistics module, with the active_users template tag and manager method you can also use django-request to show who is online in a certain time.
First steps¶
Quick start guide¶
Note
To find the request overview page, please click on Requests inside the admin, then “Overview” on the top right, next to “add request”.
Once you have installed django-request
you can add it to a django project by following these steps;
- Install the blog app by adding
'request'
toINSTALLED_APPS
.- Run
manage.py migrate
so that Django will create the database tables.- Add
request.middleware.RequestMiddleware
toMIDDLEWARE
. If you usedjango.contrib.auth.middleware.AuthenticationMiddleware
, placeRequestMiddleware
after it. If you usedjango.contrib.flatpages.middleware.FlatpageFallbackMiddleware
placerequest.middleware.RequestMiddleware
before it else flatpages will be marked as error pages in the admin panel.- Make sure that the domain name in django.contrib.sites admin is correct. This is used to calculate unique visitors and top referrers.
django-admin.py¶
purgerequests¶
This command can be used to purge old requests, it takes two arguments amount and duration. Example:
$ python manage.py purgerequests 1 month
$ python manage.py purgerequests 2 weeks
It also has a option called --noinput
, if this is supplied, it will not ask you to confirm. With this option you can use this command in a cron.
Valid durations: hour(s)
, day(s)
, week(s)
, month(s)
, year(s)