Skip to main content

Django analytics kit for the data-obsessed.

Project description

Django analytics kit for the data-obsessed.

Hoarder in an event tracking API for Django that supports multiple analytics backends: KISSMetrics, Google Analytics, local MongoDB storage.

Hoarder is for you if:

  • You want to use multiple web analytics tools without duplicating code for each of them

  • You want to be able to swap analytics packages without changing your code

  • You want to have a local copy of all your analytics data

Installation

  1. Run pip install hoarder

  2. Add ‘hoarder’ app to INSTALLED_APPS

  3. Add ‘hoarder.middleware.LoggingMiddleware’ and ‘hoarder.middleware.DeduplicationMiddleware’ to MIDDLEWARE_CLASSES

  4. Add the following to the beginning of head section in your base template:

    {% load hoarder_tags %}
    {% tracking_code %}
  5. Specify the backends you want to use in HOARDER_BACKENDS settings variable

Supported backends

  • hoarder.backends.LogBackend - just outputs all events to log for debug purposes

  • hoarder.mongo.MongoBackend - stores all events in a local MongoDB database

  • hoarder.backends.KISSMetricsBackend - KISSMetrics integration

  • hoarder.ga.GABackend - Google Analytics integration

Settings

HOARDER_BACKENDS - list of enabled backends

HOARDER_MONGO_DATABASE - for Mongo backend, name of the database to use

KISSMETRICS_API_KEY - for KISSMetrics backend, the API key from your KISSMetrics account

Usage

Registering an event in view:

from hoarder import register_request_event
...
register_request_event(request, 'signed up', {'plan level' : 'Basic'})

Registering an event outside of a view:

from hoarder import register_request_event
...
register_user_event(user, 'billed', {'amount' : '49.99'})

Labeling current visitor:

from hoarder import label_visitor,
...
label_visitor(request, 'Nice person')

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

hoarder-0.0.4.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file hoarder-0.0.4.tar.gz.

File metadata

  • Download URL: hoarder-0.0.4.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for hoarder-0.0.4.tar.gz
Algorithm Hash digest
SHA256 8791bcb8a1d3b894c3c4a147ea5470077a53161dc9b085b65dfe6e9c532ff595
MD5 552813d89c9ceb44e57689c28dc9ad39
BLAKE2b-256 ebb2fc95c37bd3c72d9a5653c1e4860e2467fdcafaf3b5de35323c4797ba12c2

See more details on using hashes here.

Supported by

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