Metadata-Version: 1.0
Name: django-slow-log
Version: 0.1.1
Summary: slow request log for django
Home-page: http://github.com/jmoiron/django-slow-log
Author: Jason Moiron
Author-email: jmoiron@jmoiron.net
License: MIT
Description: django-slow-log
        ---------------
        
        ``django-slow-log`` is an additional logging layer that keeps a log similar to
        an apache or nginx request log, but adds additional higher level information
        about the state of the process and the resources used by the server during
        the generation of the response.
        
        installing/usage
        ================
        
        
        To use, add to your ``MIDDLEWARE_CLASSES`` in settings.py::
        
            MIDDLEWARE_CLASSES = (
                'django_slow_log.middleware.DjangoSlowLog',
                ...
            )
        
        settings
        ========
        
        ``DJANGO_SLOW_LOG_PRINT_ONLY``
          do not keep a log in a file, only print; this can be useful for use on your 
          devbox (via runserver)
        
        ``DJANGO_SLOW_LOG_LOCATION``
          path of the log file (default: ``/var/log/django-slow.log``)
        
        
        
Keywords: django profiling slow request
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: Log Analysis
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
