Skip to main content

Integrate snakeviz profile visualization into django

Project description

Django Snakeviz Profiling

PyPI - Version PyPI - Python Version


Django Snakeviz Profiling integrates snakeviz along with a db query display into a django middleware that can show results inline in your application.

No migrations are required nor do any extra url routes need to be added to your application, only requiring to install one piece of middleware.

Table of Contents

Installation

pip install django-snakeviz-profiling

In your settings file, add the following middleware as close to the top as possible to cover as much code as possible:

MIDDLEWARE = [
    "django_snakeviz_profiling.SnakevizProfilingMiddleware",
    ...
]

Add django_snakeviz_profiling to your installed apps:

INSTALLED_APPS = [
    ...
    "django_snakeviz_profiling",
]

Finally, add the following config setting:

SNAKEVIZ_PROFILING = "PLEASE_PROFILE_REQUESTS"

Usage

On any request, add the following GET parameter to your url:

SNAKEVIZ_PROFILING=PLEASE_PROFILE_REQUESTS

, and instead of the regular page, you will be presented with a profile output from the request.

Note that if django_snakeviz_profiling is used, individual requests will be dramatically slower, so be careful using this in prod!

License

django-snakeviz-profiling is distributed under the terms of the MIT license. Parts of the code comes from the Snakeviz Project under the BSD 3-Clause license, and is specifically identified as such.

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_snakeviz_profiling-0.1.0.tar.gz (270.5 kB view hashes)

Uploaded Source

Built Distribution

django_snakeviz_profiling-0.1.0-py3-none-any.whl (280.2 kB view hashes)

Uploaded Python 3

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