Django Insights
Project description
Features
Create insights for your app, store them in a SQLite database for further processing, these insights are written right next to your application logic.
Note:
Still working on some small things and making and extented tests and docs will follow soon. For now focus is on:
- Django 3.2 (LTS), 4.0,4.1 and 4.2;
- Python ≥ 3.8
Installation
Installing with:
pip install 'django-insights'
Usage
First create 1 or more insights.py
file(s) in your app directory, for example:
project
└── testapp
└── insights.py
In these insights files your write out any metric you would like to track. Eacht metric starts with a question and some values to store. Below is a example of the @metrics.counter
function:
# project/testapp/insights.py
from django_insights.metrics import metrics
from project.testapp.models import Author
label = "Bookstore"
@metrics.counter(question="How many authors are there?")
def count_authors() -> int:
return Author.objects.count()
Add django_insights package, insights database and router to your settings
INSTALLED_APPS = [
...
"django_insights",
]
DATABASES = {
...
"insights": {"ENGINE": "django.db.backends.sqlite3", "NAME": "db/insights.db"},
...
}
DATABASE_ROUTERS = ['django_insights.database.Router']
Note: please make sure you exclude the database in your .gitignore
file
Migrate insights database:
workon myapp
python manage.py migrate insights --database=insights
Now collect your insights
python manage.py collect_insights
You now have a database containing all insights from your application.
You can inspect this database yourself with sqlite3 db/insights.db
- or - you can use the Django Insights dashboard.
To enable this dashboard, add the following settings:
from django.urls import include, path
urlpatterns = [
path(
'/insights',
include('django_insights.urls', namespace='insights'),
),
]
Now you can visit https://localhost:8000/insights to inspect your Django Insights database
Django insights contains 5 types of metrics it can collect:
@metrics.counter
@metrics.gauge
@metrics.timeseries
@metrics.scatterplot
@metrics.barchart
Counter:
from django_insights.metrics import metrics
from project.testapp.models import Author
@metrics.counter(question="How many authors are there?")
def count_authors() -> int:
return Author.objects.count()
Gauge:
from django.db.models import Avg, Count
from django_insights.metrics import metrics
from project.testapp.models import Author
@metrics.gauge(question="Average book(s) per author?")
def avg_books_per_author() -> int:
avg_total_books = (
Author.objects.prefetch_related('books')
.annotate(total_books=Count('books'))
.aggregate(Avg('total_books'))
.get('total_books__avg')
)
return avg_total_books
Timeseries:
from datetime import datetime
from django.db.models import Count
from django.db.models.functions import TruncMonth
from django_insights.metrics import metrics
from project.testapp.models import Book
@metrics.timeseries(
question="Num of books created per month?",
desc="How many books are added each month, since the opening of our store",
xlabel="Month",
xformat='%m',
ylabel="Num of books",
)
def num_of_books_per_month() -> list[tuple[datetime, int]]:
return (
Book.objects.all()
.annotate(month=TruncMonth('created'))
.values('month')
.filter(month__isnull=False)
.annotate(total=Count('pk'))
.values_list('month', 'total')
.order_by('month')
)
Scatterplot:
from datetime import datetime
from django.db.models import Count, Value
from django_insights.metrics import metrics
from project.testapp.models import Author
@metrics.scatterplot(
question="Num of books by age of author?",
xlabel="Age",
ylabel="Num of books",
)
def author_age_vs_num_of_books() -> list[tuple[float, float, Any]]:
return (
Author.objects.values('age')
.annotate(num_of_books=Count('books'), category=Value("author"))
.values_list('num_of_books', 'age', 'category')
)
Barchart:
from datetime import datetime
from django.db.models import Case, Count, Value, When
from django_insights.metrics import metrics
from project.testapp.models import Author
@metrics.barchart(
question="Num of books by gender of author?",
xlabel="Gender",
ylabel="Num of books",
)
def author_gender_vs_num_of_books() -> list[tuple[float, float, str]]:
return (
Author.objects.values('gender')
.annotate(
num_of_books=Count('books'),
gender_category=Case(
When(gender=1, then=Value('Male')),
When(gender=2, then=Value('Female')),
),
)
.values_list('num_of_books', 'gender', 'gender_category')
)
Settings
# Custom app name
INSIGHTS_APP_NAME = "Bezamon"
# Quality of chart images
INSIGHTS_CHART_DPI = 180
# Default theme for dashboard
INSIGHTS_THEME = "dark"
# Change primary color of dashboard
INSIGHTS_CHART_LIGHT_PRIMARY_COLOR = "#2563EB"
INSIGHTS_CHART_DARK_PRIMARY_COLOR = "#BFDBFE"
Background
I'm currently working at a small company that is in the process of renewing some parts of our product. To gain insight into the usage over different periods, we have tried a few solutions. We initially attempted to periodically generate CSV files from queries, as well as send data to a dashboard at regular intervals.
We ended up with many exports that where spread out over multiple people. Additionally, exporting data directly from the database also posed a security risk, as it required constant movement of possible sensitive information. After several months of working with CSV files, which were often outdated and required conversion by other (paid) tools, we where looking for a better solution.
I wanted an easy-to-configure file within our various apps that would allow me to create "insights" easily, so Django Insights was born. I decided to switch to a local SQLite database which could be share on request, as a plus these files can be tracked by a security officer.
Documentation
Write more about where to find documentation
Ideas
- Connect to other datasources and export to different file-formats ( ArrowFile?, NDJSON )
Is it any good?
License
The MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-insights-0.1.5.tar.gz
.
File metadata
- Download URL: django-insights-0.1.5.tar.gz
- Upload date:
- Size: 375.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8022234924cdd6b0e1cd586bbb52dffd82ba10a560daf385b49a08991e01df60 |
|
MD5 | 727317f202a39e0ee7ab6c88bd37f821 |
|
BLAKE2b-256 | 9f9f6444fb10502c38ffe3d65f5320f8bb85f5db62fb1511fc49c45cb6935f7c |
File details
Details for the file django_insights-0.1.5-py2.py3-none-any.whl
.
File metadata
- Download URL: django_insights-0.1.5-py2.py3-none-any.whl
- Upload date:
- Size: 251.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | beb4dd93e6bb5fe7d6c0e20d277e8fe79eedd43af5eda707db6f1737c003e6b8 |
|
MD5 | f6e9358071d8303a5f4c3fc7a8ec420e |
|
BLAKE2b-256 | 20f99408eff1b9bf6be5802eb211b7d90aaac435841680ecaa814119a178a36f |