🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

django-snakeviz-profiling

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-snakeviz-profiling

Integrate snakeviz profile visualization into django

0.1.0
Source
PyPI
Maintainers
1

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.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts