Skip to main content

Simple, re-usable, stateless Django app for visualizing and browsing statistics, mainly based on your existing Django models.

Project description

Please note: Django MStats is in early development and the API is very likely to change.

MStats is a super simple, re-usable, stateless Django app for visualizing and browsing statistics, mainly based on existing Django models.

My motivation for creating MStats is to have a dead simple way, with as little effort as possible, to get visualization of key metrics in different Django projects.

The goal of Django MStats is not to be the ultimate metrics/statistics solution™. It will not support different backends for different Metrics services and databases. MStats makes all queries in real-time, and does not store any permanent data itself, even though Django’s cache might be used.

In other words, Django MStats is a reusable app for those who want to get basic statistics browsing with minimum effort. Since MStats is stateless, it can easily be tested out, and thrown away in favor of something more advanced, if a project grow out of it.

What does M in Mstats stand for?

Model or Mini. Whichever you like best.

Requirements

Currently MStats depends on PostgreSQL, because it uses a Postgres specific SQL functions for retrieving stats.

Installation

  1. Install from PyPI:

    pip install django-mstats
  2. Add django_mstats to INSTALLED_APPS

  3. Add URL route to your urls.py:

    url(r"^mstats/", include("django_mstats.urls")),
  4. Create mstats.py file(s) in your Django apps (see below).

Defining different metrics

Once you have added django_mstats to your INSTALLED_APPS, you can create mstats.py files within your Django apps. In those files you should create classes that inherits from ModelStats. Below are some examples.

Statistics for newly registered users:

from django_mstats.models import ModelStats
from django.contrib.auth.models import User

class NewUsers(ModelStats):
    model = User
    datetime_field = "date_joined"

Specifying a name:

class NewUsers(ModelStats):
    model = User
    datetime_field = "date_joined"
    name = "User registrations"

Author

Django-MStats is developed by Jonatan Heyman.

License

BSD License

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-mstats-0.1.0.tar.gz (17.3 kB view details)

Uploaded Source

File details

Details for the file django-mstats-0.1.0.tar.gz.

File metadata

  • Download URL: django-mstats-0.1.0.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-mstats-0.1.0.tar.gz
Algorithm Hash digest
SHA256 29a200596f4f307323d65aaab2cc44d3f036a97445be4441ce7da5df3cc17c9b
MD5 f8388a249e6a9d4a9a2e27403343bc44
BLAKE2b-256 c4a4600c2c5296e740668008f8ed877c989d4c983b1b30d0823caa1f9f8b1a44

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