Middleware for Django to support plop profiling
Project description
Django-plop is a middleware for profiling your views with PLOP, the Python Low Overhead Profiler.
Usage
Install it with pip (or easy_install, if that’s how you roll):
pip install django-plop
In your project settings:
MIDDLEWARE_CLASSES = MIDDLEWARE_CLASSES + ('django-plop.middleware.PlopMiddleware',) PLOP_DIR = os.path.join(PROJECT_ROOT, 'plop') # will be created, defaults to /tmp/plop
Then start your server with python manage.py --noreload (the --noreload is very important.) Hit a few pages, and then start the plop viewer like so:
python -m plop.viewer --datadir=plop
And navigate to localhost:8888 to view the profile results.
Note
--noreload is used in development to allow the signalling features PLOP uses. This means it sadly won’t work with some alternate runserver implementations such as django-devserver. It will, however, work in prefork environments like Gunicorn.
Production Usage
PLOP itself is used in production by Dropbox with 2% CPU overhead (or so). However, this middleware will write logs to the disk, which may not be acceptable for your use case (especially on Heroku and other PaaSes)
Non-goals
Django-plop won’t install tornado for you (you need it to use the plop visualizer.) This is because you can use it in production, and you may not want to have tornado kicking around in your production environment. If you you want to have it installed for you, install with the “viewer” extras:
pip install django-plop[viewer]
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
File details
Details for the file django_plop-0.0.1.tar.gz
.
File metadata
- Download URL: django_plop-0.0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f48d19355b4457d77da4159320ea4823efca2c50468eff8951cabf8223c3ed |
|
MD5 | 08989af09bb277557f74a0e93ad821d2 |
|
BLAKE2b-256 | 73c5f14ca0ca52760d1b009d81cbf55d475dc987cffc19464a20cb0e6ad6dd4c |