This file is indexed.

/usr/lib/python2.7/dist-packages/monasca_statsd-1.9.0.egg-info/PKG-INFO is in python-monasca-statsd 1.9.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
Metadata-Version: 1.1
Name: monasca-statsd
Version: 1.9.0
Summary: Monasca statsd Python client
Home-page: https://github.com/openstack/monasca-statsd
Author: monasca
Author-email: monasca@lists.launchpad.net
License: Apache-2
Description-Content-Type: UNKNOWN
Description: Team and repository tags
        ========================
        
        [![Team and repository tags](https://governance.openstack.org/badges/monasca-statsd.svg)](https://governance.openstack.org/reference/tags/index.html)
        
        <!-- Change things from this point on -->
        
        A Monasca-Statsd Python client.
        ================
        
        Quick Start Guide
        -----------------
        
        First install the library with `pip` or `easy_install`
        
            # Install in system python ...
            sudo pip install monasca-statsd
        
            # .. or into a virtual env
            pip install monasca-statsd
        
        Then start instrumenting your code:
        
        ```
        # Import the module.
        import monascastatsd as mstatsd
        
        # Create the connection
        conn = mstatsd.Connection(host='localhost', port=8125)
        
        # Create the client with optional dimensions
        client = mstatsd.Client(connection=conn, dimensions={'env': 'test'})
        
        NOTE: You can also create a client without specifying the connection and it will create the client 
        with the default connection information for the monasca-agent statsd processor daemon 
        which uses host='localhost' and port=8125.
        
        client = mstatsd.Client(dimensions={'env': 'test'})
        
        # Increment and decrement a counter.
        counter = client.get_counter(name='page.views')
        
        counter.increment()
        counter += 3
        
        counter.decrement()
        counter -= 3
        
        # Record a gauge 50% of the time.
        gauge = client.get_gauge('gauge', dimensions={'env': 'test'})
        
        gauge.send('metric', 123.4, sample_rate=0.5)
        
        # Sample a histogram.
        histogram = client.get_histogram('histogram', dimensions={'test': 'True'})
        
        histogram.send('metric', 123.4, dimensions={'color': 'red'})
        
        # Time a function call.
        timer = client.get_timer()
        
        @timer.timed('page.render')
        def render_page():
            # Render things ...
            pass
        
        # Time a block of code.
        timer = client.get_timer()
        
        with timer.time('t'):
            # Do stuff
            time.sleep(2)
        
        # Add dimensions to any metric.
        histogram = client.get_histogram('my_hist')
        histogram.send('query.time', 10, dimensions = {'version': '1.0', 'environment': 'dev'})
        ```
        Repository
        -------------
        
        The monasca-statsd code is located here:
        [here](https://github.com/stackforge/monasca-statsd).
        
        Feedback
        --------
        
        To suggest a feature, report a bug, or general discussion, head over
        [here](https://bugs.launchpad.net/monasca).
        
        
        License
        -------
        
        See LICENSE file
        Code was originally forked from Datadog's dogstatsd-python, hence the dual license.
        
        
Keywords: openstack
monitoring
statsd
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: System :: Monitoring
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5