Skip to main content

Server-side analytics

Project description

Tracker

Tracker is a python package, that can be integrated into

  • any django project as middleware;

  • any flask project as extension.

It asynchronously intercepts requests and sends metric data to our RigidAnalytics Backend (see https://github.com/reustleco/rigidanalytics).

Installation

From PyPI

pip install rigidanalytics-tracker

From git repository

git clone git@github.com:reustleco/rigidanalytics-tracker.git
cd rigidanalytics-tracker
pipenv install
pipenv shell

Configuration

Below the following environment variables are in use: RA_PROJECT_ID, RA_PROJECT_TOKEN and RA_BACKEND_ENDPOINT.

In order to get project ID and token you need to have access to the admin pages on RigidAnalytics Backend. RA_BACKEND_ENDPOINT is the base URL to the Backend. If it is not provided then the default URL (i.e. https://rigidanalytics.com) is used instead.

Django integration

  • Add rigidanalytics_tracker.middleware.Analytics middleware to the MIDDLEWARE (after all django middlewares).

  • Add the following dict that configures Tracker:

RIGID_ANALYTICS = {
    'PROJECT_ID': os.environ['RA_PROJECT_ID'],
    'PROJECT_TOKEN': os.environ['RA_PROJECT_TOKEN'],
    'DEBUG_DISABLE_ANALYTICS': False,
    'BACKEND_ENDPOINT': os.environ.get('RA_BACKEND_ENDPOINT', ''),
}

See an example django integration about how everything configured there.

Flask integration

from rigidanalytics_tracker.flask import Tracker

flask_app.config['RIGID_ANALYTICS'] = {
    'PROJECT_ID': os.environ['RA_PROJECT_ID'],
    'PROJECT_TOKEN': os.environ['RA_PROJECT_TOKEN'],
    'DEBUG_DISABLE_ANALYTICS': False,
    'BACKEND_ENDPOINT': os.environ.get('RA_BACKEND_ENDPOINT', ''),
}
tracker = Tracker()
tracker.init_app(flask_app)

See an example flask integration about how everything configured there.

Test the tracker

Create an virtual environment:

cd tests/integrations/
pipenv install --dev
pipenv shell

Run simple http server:

dotenv -f .env.example run ./simple_http_server.py

In the applications the tracker is configured to send the events to the http server. Once an event is captured it is printed to console.

Test django integration

dotenv -f .env.example run ./django_app/manage.py migrate
dotenv -f .env.example run ./django_app/manage.py runserver

Open home page and then check console (with the simple http server) for an event.

Test flask integration

dotenv -f .env.example run python ./flask_app/app.py

Open home page and then check console (with the simple http server) for an event.

Test with the existing backend

Create .env:

cp .env.example .env

Get a project ID and project token from the existing RigidAnalytics backend and put them into the RA_PROJECT_ID and RA_PROJECT_TOKEN respectively. Put backend URL into the RA_BACKEND_ENDPOINT.

Start flask application:

dotenv run python ./flask_app/app.py

Open home page and then check backend admin for a new event.

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

rigidanalytics_tracker-1.0.0.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rigidanalytics_tracker-1.0.0-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file rigidanalytics_tracker-1.0.0.tar.gz.

File metadata

  • Download URL: rigidanalytics_tracker-1.0.0.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for rigidanalytics_tracker-1.0.0.tar.gz
Algorithm Hash digest
SHA256 1ec6d14087a5192583b6ba7eb3db11c537533060e54ed28ee90bf06479d466e7
MD5 384ecd287448b12cdefd3d914ee28f06
BLAKE2b-256 7fe85d8c8252f4ca1e10b67519dc1ab11067e1a3b83ff5d69c271d3b784aa399

See more details on using hashes here.

File details

Details for the file rigidanalytics_tracker-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: rigidanalytics_tracker-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for rigidanalytics_tracker-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fdc7bf190ba182d290ee7abea95e31d09ed6ba84b925755c144eace3a416e5e9
MD5 2488b5118fe77eda834142598792b335
BLAKE2b-256 19f09e6fa6afc5de503691a9c12380222e567fddd32309fd13d5623a400625b5

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