Skip to main content

Adds a comment to SQL queries pointing to their place of origin

Project description

django-sql-tagger

Adds a comment to SQL queries pointing to their place of origin

Usage

Install:

pip install django-sql-tagger

Configure and add to INSTALLED_APPS in your settings.py file:

INSTALLED_APPS = [
    ...
    'django_sql_tagger',
    ...
]

SQL_TAGGER_CODE_ROOT = BASE_DIR
SQL_TAGGER_PATH_REPLACEMENTS = [
    (r'^myapp/', 'a/'),
]

Settings

SQL_TAGGER_CODE_ROOT - The root of your codebase. This is used to find out which stack frames belong to your application code.

SQL_TAGGER_PATH_REPLACEMENTS - A list of tuples of regular expressions and replacements. This is used to shorten paths in the comments. For example, if you have a file at /myapp/views.py and you want to replace /myapp/ with a/, you would add (r'^myapp/', 'a/') to the list.

Tagging precision

The tagger automatically adds comments to SQL queries, pointing to the place in the code where the query was executed. It tries to be clever in finding the right stack frame. Therefore it ignores all stack frames that don't belong to SQL_TAGGER_CODE_ROOT and anything that subclasses Model or QuerySet.

If you have a utility method that you call from multiple places, you may want to ignore it by adding @django_sql_tagger.ignore_below to the method. This annotation makes django-sql-tagger look only at the stack frames that were created before the annotated method was called.

Tagging transactions

This app monkey-patches transaction.atomic, so no changes to your code are necessary. transaction.atomic now accepts a tag argument, which will be recorded in the comments of the SQL queries. Without a tag, only the filename and line number of the transaction.atomic() call will be recorded.

Example

See the testsite/ directory for an example project using this package.

from django.core.management import BaseCommand
from django.db import connection, transaction

from testapp.models import Website


class Command(BaseCommand):
    def handle(self, *args, **options):
        Website.objects.first()

        with transaction.atomic():
            Website.objects.first()

        with transaction.atomic():
            with transaction.atomic():
                Website.objects.first()

        with transaction.atomic(tag='xxx'):
            Website.objects.first()

The above command executes the following SQL queries:

/* ta/m/c/example.py:10 */ SELECT "testapp_website"."id", "testapp_website"."name", "testapp_website"."url" FROM "testapp_website"; args=(); alias=default
BEGIN;
/* ta/m/c/example.py:12 |> ta/m/c/example.py:13 */ SELECT "testapp_website"."id", "testapp_website"."name", "testapp_website"."url" FROM "testapp_website";
COMMIT;
BEGIN;
SAVEPOINT "s140328319196032_x1";
/* ta/m/c/example.py:15 |> ta/m/c/example.py:16 |> ta/m/c/example.py:17 */ SELECT "testapp_website"."id", "testapp_website"."name", "testapp_website"."url" FROM "testapp_website";
RELEASE SAVEPOINT "s140328319196032_x1";
COMMIT;
BEGIN;
/* T=xxx ta/m/c/example.py:19 |> ta/m/c/example.py:20 */ SELECT "testapp_website"."id", "testapp_website"."name", "testapp_website"."url" FROM "testapp_website";
COMMIT;

The comments make it easier to identify where the SQL queries are coming from, for example when you see the query in the database log or a database monitoring tool.

License

GPLv3 (see LICENSE file)

Changelog

0.2.1

  • Fix AttributeError: type object 'Command' has no attribute 'code'

0.2.0

  • Monkey-patch transaction.atomic so all transactions are tagged by default

0.1.0

Initial release

Development

Install dependencies

pip install -e '.[dev]'

Run tests

cd testsite/
pytest

Release

  1. Update changelog in this file.
  2. Wait for tests to pass.
  3. Create a new release on GitHub. This will trigger a new job that will publish the package to PyPI.

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-sql-tagger-0.3.0.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

django_sql_tagger-0.3.0-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

Details for the file django-sql-tagger-0.3.0.tar.gz.

File metadata

  • Download URL: django-sql-tagger-0.3.0.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for django-sql-tagger-0.3.0.tar.gz
Algorithm Hash digest
SHA256 10c42a1d7ea57ffec55f7e818c91422aad040add26d12f227333698a5f846184
MD5 07d0586b7c472a8ca0bb0f4a51ace631
BLAKE2b-256 a462890153199da176ea74cdc4584cc4e0b59ad63d87edc13c67403cdde54f80

See more details on using hashes here.

Provenance

File details

Details for the file django_sql_tagger-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_sql_tagger-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa1c24471df46cd14015af53f0d5ce6aa99a630ccafe7bd41d49b9c96d49e205
MD5 cd39d1433aebc7214f0a7cf6e47ff821
BLAKE2b-256 3c9d7b3533c56bb2911c77d8c303327bed9fb4b294877271fd2ca9fe4fc8f0b0

See more details on using hashes here.

Provenance

Supported by

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