Monasca statsd Python client
Project description
Team and repository tags
========================
[![Team and repository tags](http://governance.openstack.org/badges/monasca-statsd.svg)](http://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.
========================
[![Team and repository tags](http://governance.openstack.org/badges/monasca-statsd.svg)](http://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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
monasca-statsd-1.5.0.tar.gz
(19.3 kB
view details)
Built Distribution
File details
Details for the file monasca-statsd-1.5.0.tar.gz
.
File metadata
- Download URL: monasca-statsd-1.5.0.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03aab2015bd12ea3b20dd6701e7e2989f3d3115e25e620fdd8e79667f09b98b0 |
|
MD5 | b63760030865337d28475ae03bfa03e9 |
|
BLAKE2b-256 | 70405c22c21e22385a6fff29d86a6ddba45601df92b17a16241bef288cc89f39 |
Provenance
File details
Details for the file monasca_statsd-1.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: monasca_statsd-1.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ffd7f1134306a725b6e0712587692fd958cb69617be3d8e1a77a25c2ba1fc00 |
|
MD5 | f05e47368a846da874acdf3a2acff82a |
|
BLAKE2b-256 | 77c84ac84747c6fbf15e35f7058178bb88479a4f15f3d972db63e8660b28cd7a |