Skip to main content

django-basic-stats is a simple traffic statistics application. It show latest referrer, google queried terms or overall hits count. It also provides optional logging and statistics for mobile devices.

Project description

django-basic-stats is a simple traffic statistics application. It show latest referrer, google queried terms or overall hits count.

It also provides optional logging and statistics for mobile devices (user agent, screen and window width/height, device pixel ratio).

Installation

  • Run pip install django-basic-stats

  • Add ‘stats’, to INSTALLED_APPS

  • Add ‘stats.middleware.StatsMiddleware’ to MIDDLEWARE_CLASSES

  • Add url(r’^stats/’, include(‘stats.urls’)) to your urlpatterns in urls.py

  • Run “python manage.py migrate” to sync the database

Enabling mobile device logging

Mobile devices are logged via JavaScript code sending AJAX requests if browser USER AGENT matches one of mobile devices.

Assuming you have jQuery available you will have to add such JavaScript code to you site:

var ismobile = (/iphone|ipod|android|blackberry|mini|palm|smartphone|ipad|xoom|playbook|tablet|mobile|kindle/i.test(navigator.userAgent.toLowerCase()));
if (ismobile) {
    $(document).ready(function(){
        $.ajax({
        url: '/stats/mobile/',
        cache: false,
        type: "GET",
        data: {"window_width": window.innerWidth,
        "window_height": window.innerHeight,
        "screen_width": screen.width,
        "screen_height": screen.height,
        "device_pixel_ratio": window.devicePixelRatio},
        });
    });
}

If you are using other JavaScript library you will have to redo the AJAX sending part. Note that /stats/mobile/ is a hardcoded URL.

Usage

Statistics are visible for site staff. Login to you site as such user and go to /stats/

In Django admin panel you will also get “Mobile” model with all logged mobile devices.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-basic-stats-0.2.0.tar.gz (7.2 kB view details)

Uploaded Source

File details

Details for the file django-basic-stats-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django-basic-stats-0.2.0.tar.gz
Algorithm Hash digest
SHA256 af2bcdfcf519b0bd6f7bdc460c510f88b5c94557483303bc4252352af9b68acc
MD5 b4a7357802a58e1ab26f494ec904ec30
BLAKE2b-256 341e9e82dfca67eefb03d4f55efe355a42a18d0dafc76402514ab1f1300ccd8e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page