Metadata-Version: 1.1
Name: python-traceview
Version: 0.1.0
Summary: TraceView API Client
Home-page: https://github.com/danriti/python-traceview
Author: Daniel Riti
Author-email: dmriti@gmail.com
License: MIT
Description: python-traceview
        ================
        
        Library for providing access to the TraceView API v2.
        
        Please see the `TraceView API Reference <http://dev.appneta.com/docs/api-v2/reference.html>`_ for more information.
        
        Installation
        ------------
        
        To install python-traceview, simply:
        
        .. code-block:: bash
        
            $ pip install python-traceview
        
        Usage
        -----
        
        .. code-block:: python
        
            >>> import traceview
            >>> tv = traceview.TraceView("API KEY HERE")
            >>> tv.apps()
            [u'Default', u'pyramid_web_app']
            >>> tv.latency.server.summary(app='Default')
            {u'count': 2746.0, u'average': 213911.87181354698, u'latest': 35209.87654320987}
            >>> tv.latency.client.summary(app='Default', time_window='week')
            {u'count': 70546.0, u'average': 10385458.60856746, u'latest': 138626.26463003372}
        
Keywords: traceview api client development performance
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
