Metadata-Version: 1.0
Name: dogslow
Version: 0.1
Summary: A Django middleware that logs tracebacks of slow requests.
Home-page: https://bitbucket.org/evzijst/dogslow
Author: Erik van Zijst
Author-email: erik.van.zijst@gmail.com
License: GNU LGPL
Download-URL: https://bitbucket.org/evzijst/dogslow/dogslow-0.1.tar.gz
Description: =======================================
        Dogslow -- Django Slow Request Watchdog
        =======================================
        
        
        Overview
        --------
        
        Dogslow is Django watchdog middleware class that logs tracebacks of slow
        requests.
        
        
        Installation
        ------------
        
        Install dogslow::
        
            $ pip install dogslow
        
        Then add if to your list of middleware classes in your Django settings.py file::
        
            MIDDLEWARE_CLASSES = (
                'dogslow.WatchdogMiddleware',
                ...
            )
        
        For best results, make it one of the first middlewares that is run.
        
        
        Configuration
        -------------
        
        You can use the following configuration properties in your ``settings.py``
        file to tune the watchdog::
        
            # Watchdog is enabled by default, to temporarily disable, set to False:
            DOGSLOW = True
        
            # Location where Watchdog stores its log files:
            DOGSLOW_OUTPUT = '/tmp'
        
            # Log requests taking longer than 25 seconds:
            DOGSLOW_TIMER = 25
        
            # When both specified, emails backtraces:
            DOGSLOW_EMAIL_TO = 'errors@atlassian.com'
            DOGSLOW_EMAIL_FROM = 'no-reply@atlassian.com'
        
Keywords: django debug watchdog middleware
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
