Based on: Dowser
The original Dowser is WSGI enabled. Unfortunately, not all Django hosting providers use WSGI. In daily development the most common usage pattern is ./manage.py runserver which is not using WSGI. That's the story why this fork was created.
In the other words the target of this project is to provide easy to use and install Django app to debug your memory leaks.
Following enhancements have been implemented on top of original Dowser:
- long term analysis, 1m, 1h, 1d, 4w buffers
- optimization by moving from lists to python deque
- server load optimization by moving charts to google chart
- only authenticated superuser can view analysis (Django specific)
# latest release
pip install django-dowser
# or latest master
pip install git+git://github.com/munhitsu/django-dowser.git
Next, modify project configuration to add the app:
INSTALLED_APPS = (
#...
'django_dowser',
#...
)
urlpatterns += patterns('',
(r'^dowser/', include('django_dowser.urls')),
)
[django-dowser]
location = django-dowser
recipe = zerokspot.recipe.git
repository = https://github.com/munhitsu/django-dowser
Use django-dowser only on multithreaded servers. With forking, each fork will have it's own Dowser storage.
Start the project and open link:
http://domain:port/dowser/
With development server, this is typically
http://localhost:8000/dowser/