UNKNOWN
Project description
From: http://chris-lamb.co.uk/projects/django-dumpslow/
django-dumpslow is a reusable Django application that logs requests that take a long time to execute and provides an tool to summarise the resulting data.
Modelled on mysqldumpslow, django-dumpslow is intended as a tool to determine which parts of a project might benefit most from optimisation and to provide valuable empirical data.
The tool groups requests that are similar by exploiting Django’s ability to reverse URLs - requests that that use the same view should not counted distinctly. Views can then be grouped by the total accumulated time spent by that view or simply by their raw frequency in the logs.
Additionally, if the log entries contain timestamps then django-dumpslow can limit queries by a user-defined interval. This can be useful for generating regular reports of slow pages, perhaps by regularly emailing them to a development list.
Data is stored in Redis to allow easy collation of data from multiple front-end servers (django-dumpslow requires the Redis Python client library).
An example output is:
$ ./manage.py dumpslow View Accumulated time ===================================================== example.views.slow 92.88 /unknown (unreversible url) 16.84
django-dumpslow ships with an example project that demonstrates its functionality.
Installation
Get Dedis working in django, it’s required. You’ll need a redis server running and REDIS_HOST and REDIS_PORT set in settings.py
Add the following to INSTALLED_APPS in settings.py:
'django_dumpslow'
Add the following to MIDDLEWARE_CLASSES in settings.py:
'django_dumpslow.middleware.LogLongRequestMiddleware'
License
django-dumpslow is released under the BSD license.
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
File details
Details for the file django-dumpslow-1.tar.gz
.
File metadata
- Download URL: django-dumpslow-1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78ed307987ed58dd36c06a8ced12858bf2d7ea75a47b2889baa91cd1e73b0ec1 |
|
MD5 | 4bfa4cc29924e89429bb023f0fdc6d74 |
|
BLAKE2b-256 | 6b58f6a1ad5dbab8deb4e6724ef0dce1a22d464d20a46b03f03e15d977a86e02 |