Add helpful annotations to SQL queries.
Project description
django-query-prefixer
The Django Query Prefixer allows you to prepend annotations to every query executed within your Django project. This can be useful for monitoring. By adding custom prefixes to queries, you can gain insights into their origin, and can track their performance in a more organized manner.
Installation
You can install django-query-prefixer
using pip:
pip install django-query-prefixer
Usage
- Change database engine in your
settings.py
todjango_query_prefixer.backends.<database backend>
.
DATABASES = {
"default": {
"ENGINE": "django_query_prefixer.backends.postgresql",
"HOST": "127.0.0.1",
"NAME": "postgres",
"PASSWORD": "postgres",
"USER": "postgres",
}
}
- (Optional) Add
django_query_prefixer.middlewares.request_route
to theMIDDLEWARE
list. This middleware addsroute
andview_name
prefixes to SQL queries.
MIDDLEWARE = [
"django_query_prefixer.middlewares.request_route",
# ...
]
- Now, whenever queries are executed in your Django project, the configured prefixes will be automatically added to those queries. For example, a query like this:
User.objects.filter(username='bob')
will be executed as:
/* view_name=example route=/example */ SELECT ... FROM "auth_user" WHERE ("auth_user"."username" = 'bob')
You can add additional context to queries using the sql_prefixes
contextmanager:
from django_query_prefixer import sql_prefixes
with sql_prefixes(user_id=request.user.id, foo="bar"):
User.objects.filter(username='bob')
/* user_id=X foo=bar view_name=example route=/example */ SELECT ... FROM "auth_user" WHERE ("auth_user"."username" = 'bob')
Contributing
Contributions to django-query-prefixer
are welcome! If you find a bug, want to
add a new feature, or improve the documentation, please open an issue or submit
a pull request in the GitHub repository.
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_query_prefixer-0.1.3.tar.gz
.
File metadata
- Download URL: django_query_prefixer-0.1.3.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02f6448e40cda6fafaad60eb9e540c899bb704400c1e6609d855b70f5813d22f |
|
MD5 | 9b19a12fd8ca24c5f7f6f9b0eec61a7a |
|
BLAKE2b-256 | be33e85be0da75225641677e18f878e1fdea902ec7f4770097dc359a39157a95 |
File details
Details for the file django_query_prefixer-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: django_query_prefixer-0.1.3-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4921c026413ec6564316256dd453ddbad2007ce9ed2292f21d1965f51f11f846 |
|
MD5 | df922c595c5f21aecf9e85af4a15636c |
|
BLAKE2b-256 | 04375b554f328b486fb9715e875e407d58802d14bbafe91b53e1f58290bf0a90 |