Metadata-Version: 1.1
Name: django-pinba
Version: 1.3.0
Summary: django pinba
Home-page: http://github.com/gotlium/django-pinba
Author: GoTLiuM InSPiRiT
Author-email: gotlium@gmail.com
License: UNKNOWN
Description: Django-Pinba
        ============
        
        What's that
        -----------
        App for collect Django statistics into PinbaEngine.
        
        
        Publications
        -----------
        * `Completely installation and usage on production <http://habrahabr.ru/post/200128/>`_.
        
        
        Quick installation
        ------------------
        1. Using pip:
        
        .. code-block:: bash
        
            $  pip install django-pinba
        
        
        2. Add ``pinba.middleware.PinbaMiddleware`` middleware to ``MIDDLEWARE_CLASSES`` on your settings
        
        3. Add pinba-engine server configuration:
        
        .. code-block:: python
        
            PINBA_SERVER = '192.168.55.11'
            PINBA_PORT = 30002
            PINBA_ENABLED = True
            PINBA_DISABLE_ADMIN = True
        
        
        Timers
        ------
        .. code-block:: python
        
            from time import sleep
            from pinba.timers import get_monitor
        
            monitor = get_monitor()
            timer = monitor.timer(foo='bar')
            timer.start()
            sleep(0.5)
            timer.stop()
            monitor.send()
        
        
        Requirements
        ------------
        * PinbaEngine==1.1.0
        * Pinboard==1.5.2
        * pynba==0.5.4
        
        
        Credits
        -------
        
        - PinbaEngine_
        - Pynba_
        - PinBoard_
        
        .. _PinbaEngine: http://pinba.org
        .. _Pynba: https://github.com/johnnoone/pynba
        .. _PinBoard: https://github.com/intaro/pinboard
        
        
        .. image:: https://d2weczhvl823v0.cloudfront.net/gotlium/django-pinba/trend.png
            :alt: Bitdeli badge
            :target: https://bitdeli.com/free
        
Keywords: django pinba
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
