Metadata-Version: 1.1
Name: django-nox
Version: 0.0.2
Summary: Statistics middleware and analysis tools for django
Home-page: https://github.com/destino74/django-nox
Author: destino74
Author-email: ljf6670601@gmail.com
License: MIT
Description: Django-Nox
        ==========
        
        Statistics middleware and analysis tools for django
        
        Installation
        ------------
        
        To get the latest stable release from PyPi
        
        .. code-block:: bash
        
            $ pip install django-nox
        
        
        Add all relevant apps to your ``INSTALLED_APPS``
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...,
                'django_nox',
            )
        
        Add all middleware to your ``MIDDLEWARE``
        
        .. code-block:: python
        
            MIDDLEWARE = (
                ...,
                'django_nox.middleware.TimeLogMiddleware'
            )
        
        Don't forget to migrate your database
        
        .. code-block:: bash
        
            ./manage.py migrate
        
        
        Usage
        -----
        
        
        
        Running & Sorting Results
        #########################
        
        Once you've installed it, the request times will be log in database, and you can run this command to analyze the resulting data::
        
            $ python manage.py nox_analyze
        
        
        
        Settings
        ########
        To configured some parmas in settings.py
        
        
        NOX_SLOW_REQUEST
        ################
        
        Default: 0
        
        Slow request. Number of rows from which a request will be assumed to be slow and store to database.
        
        
        Enjoy!
        ######
        
        Email me with any questions: [liangjinfeng@youmi.com](liangjinfeng@youmi.com).
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
