Skip to content

Django fork of amazing memory leaks tracking application for python wsgi - the Dowser

License

BSD-3-Clause, Unknown licenses found

Licenses found

BSD-3-Clause
LICENSE
Unknown
LICENSE.dowser
Notifications You must be signed in to change notification settings

adamJLev/django-dowser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Based on: Dowser

A Django specific Dowser port.

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)

Screen shot

Screen shot

Installation

# 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:

settings.py

INSTALLED_APPS = (
#...
    'django_dowser',
#...
)

urls.py

urlpatterns += [url(r'^dowser/', include('django_dowser.urls'))]

Example buildout recipe

[django-dowser]
location = django-dowser
recipe = zerokspot.recipe.git
repository = https://github.com/munhitsu/django-dowser

Note

Use django-dowser only on multithreaded servers. With forking, each fork will have it's own Dowser storage.

Usage

Start the project and open link:

http://domain:port/dowser/

With development server, this is typically

http://localhost:8000/dowser/

About

Django fork of amazing memory leaks tracking application for python wsgi - the Dowser

Resources

License

BSD-3-Clause, Unknown licenses found

Licenses found

BSD-3-Clause
LICENSE
Unknown
LICENSE.dowser

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 89.5%
  • CSS 5.3%
  • HTML 5.2%