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.tar.gz
(161.3 kB
view details)
Built Distribution
File details
Details for the file statsd-3.0.tar.gz
.
File metadata
- Download URL: statsd-3.0.tar.gz
- Upload date:
- Size: 161.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 695e619ca748bd4497af79478027385cc71cfd4b6b7a5130520dbd202842b22f |
|
MD5 | ffc7c7973a0059b25b96d02ad4a37ff1 |
|
BLAKE2b-256 | 6e3a05c8ddafce7a6c4b7b14136c04e05601a03f15d99b304cd30a2ba0bead02 |
File details
Details for the file statsd-3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: statsd-3.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 546ea7346b4db9ed4cf41158dd491b8076d7b30df4193949791787b8dcc7604c |
|
MD5 | 5e9c4c6f6120ce807631a0e7a903fbaf |
|
BLAKE2b-256 | 8eea370de2c39e476b4ee16e3c0d93819358235b0837c4a4dba37be6613385e4 |