Skip to main content

Jmbo analytics app.

Project description

Jmbo Analytics

Jmbo analytics brings the power of Google Analytics to your Django projects

Travis

Required

  • You have to add jmbo_analytics to you INSTALLED_APPS

  • You have to specify a Google Analytics tracking code.

where xxx is your tracking code:

JMBO_ANALYTICS = {
   'google_analytics_id': 'xxx',
}

Usage

jmbo-analytics offers you two ways to add tracking to your pages.

1. HTML tag

Using <img /> and putting it in your base.html:

{% load jmbo_analytics_tags %}
<div style="display: none;">
   <img src="{% google_analytics %}" width="0" height="0" />
</div>

2. Middleware and Celery

Using Django’s middleware you can process every request and use Celery to make the request to Google Analytics. Note that this does not work behind a reverse caching proxy:

MIDDLEWARE_CLASSES = (
   'jmbo_analytics.middleware.GoogleAnalyticsMiddleware',
)

You may have to add jmbo_analytics to your CELERY_IMPORTS:

CELERY_IMPORTS = ('jmbo_analytics.tasks')

You may also specify paths that will be excluded when tracking:

GOOGLE_ANALYTICS_IGNORE_PATH = ['/health/', ]

Authors

Praekelt Consulting

  • Hedley Roos

Unomena

  • Euan Jonker

Changelog

0.2.2

  1. Fixed incorrect header key.

0.2.1

  1. Send correctly named header.

0.2

  1. Use requests library because it can drill through HTTP proxies.

0.1

  1. Simplify dependencies.

  2. Make transparent GIF method asynchronous.

0.0.4

  1. Better packaging.

0.0.3

  1. Fork, rename, re-license from panomena-analytics.

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

jmbo-analytics-0.2.2.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

jmbo_analytics-0.2.2-py2.7.egg (17.5 kB view hashes)

Uploaded Source

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