Metadata-Version: 1.0
Name: django-dowser
Version: 0.1.1
Summary: Django fork of amazing memory leaks tracking application for python wsgi - the Dowser
Home-page: http://github.com/munhitsu/django-dowser
Author: Mateusz Lapsa-Malawski
Author-email: mateusz@munhitsu.com
License: Copyright (c) 2008 Robert Brewer, 2009 cr3studio.com and individual contributors.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice, 
       this list of conditions and the following disclaimer.
       
    2. Redistributions in binary form must reproduce the above copyright 
       notice, this list of conditions and the following disclaimer in the 
       documentation and/or other materials provided with the distribution.
       
    3. Neither the name of the cr3studio.com nor the names of its contributors may be used 
       to endorse or promote products derived from this software without 
       specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Download-URL: https://nodeload.github.com/munhitsu/django-dowser/tarball/master
Description: About
        =====
        Based on: [Dowser](http://www.aminus.net/wiki/Dowser)
        
        Original dowser was wsgi enabled. Unfortunatelly not all django hosting solutions provide wsgi. 
        In daily development the most common usage pattern is ./manage.py runserver which defenetly is not wsgi.
        That's the story why this fork was created.
        
        In 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)
        
        
        ![Screen shot](https://github.com/munhitsu/django-dowser/raw/master/wiki/screen0.png)
        
        
        
        Installation
        ============
        	pip install git+git://github.com/munhitsu/django-dowser.git
        
        Than modify project configuration to add the app:
        
        settings.py
        -----------
        	INSTALLED_APPS = (
        	#...
        	    'django_dowser',
        	#...
        	)
        
        urls.py
        -------
        	urlpatterns += patterns('',
        	    (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. In case forking occurs than
        each fork will have it's own dowser storage.
        
        Usage
        -----
        Start the project and open link:
        
        	http://domain:port/dowser/
        
Keywords: django,dowser,debug,memory leak
Platform: 
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Environment :: Other Environment
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: BSD License
