rgeoghegan / django-snakeviz-profiling

Profiling middleware integrating snakeviz along with a db query display for django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Profiling middleware integrating snakeviz along with a db query display for django

License:MIT License


Languages

Language:JavaScript 48.2%Language:HTML 29.0%Language:Python 13.1%Language:CSS 9.7%