A simple statsd client.
Project description
statsd is a friendly front-end to Graphite. This is a Python client for the statsd daemon.
Quickly, to use:
>>> import statsd >>> c = statsd.StatsClient('localhost', 8125) >>> c.incr('foo') # Increment the 'foo' counter. >>> c.timing('stats.timed', 320) # Record a 320ms 'stats.timed'.
You can also add a prefix to all your stats:
>>> import statsd >>> c = statsd.StatsClient('localhost', 8125, prefix='foo') >>> c.incr('bar') # Will be 'foo.bar' in statsd/graphite.
Installing
The easiest way to install statsd is with pip!
You can install from PyPI:
$ pip install statsd
Or GitHub:
$ pip install -e git+https://github.com/jsocol/pystatsd#egg=statsd
Or from source:
$ git clone https://github.com/jsocol/pystatsd $ cd statsd $ python setup.py install
Docs
There are lots of docs in the docs/ directory and on ReadTheDocs.
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
statsd-3.0.1.tar.gz
(161.9 kB
view details)
Built Distribution
File details
Details for the file statsd-3.0.1.tar.gz
.
File metadata
- Download URL: statsd-3.0.1.tar.gz
- Upload date:
- Size: 161.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 027b2a15e301ad5b60f7b4cb08c3272405e6dcbb8374bfd47866c10e457f5c03 |
|
MD5 | af256148584ed4daa66f50c30b5c1f95 |
|
BLAKE2b-256 | dc17982d0d53f64b43d71fa6d410183a5a4b9bef8bdbf2c3f10c185e521c8568 |
File details
Details for the file statsd-3.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: statsd-3.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36c1b6e408439d70486671e0e218bf35a24c0357602aead45853fe29904eea1c |
|
MD5 | d7f7650068edbaca48a6bc9bee65a190 |
|
BLAKE2b-256 | 49d638bb2da3ad190db55ddac075971c3b49dcb1bcc9afc99aead3f88d7433e0 |