statsd is a friendly front-end to Graphite. This is a Python client for the statsd daemon.
- Code:
- License:
MIT; see LICENSE file
- Issues:
- Documentation:
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 pystatsd $ python setup.py install
Docs
There are lots of docs in the docs/ directory and on ReadTheDocs.
Release files for statsd 4.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| statsd-4.0.1.tar.gz | 27.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| statsd-4.0.1-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 40.9 kB
Release files / statsd-4.0.1.tar.gz
| Download URL | statsd-4.0.1.tar.gz |
|---|---|
| Size | 27.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
99763da81bfea8daf6b3d22d11aaccb01a8d0f52ea521daab37e758a4ca7d128
|
|
BLAKE2b-256 checksum How to use checksums |
272905e9f50946f4cf2ed182726c60d9c0ae523bb3f180588c574dd9746de557
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / statsd-4.0.1-py2.py3-none-any.whl
| Download URL | statsd-4.0.1-py2.py3-none-any.whl |
|---|---|
| Size | 13.1 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
c2676519927f7afade3723aca9ca8ea986ef5b059556a980a867721ca69df093
|
|
BLAKE2b-256 checksum How to use checksums |
f4d0c9543b52c067a390ae6ae632d7fd1b97a35cdc8d69d40c0b7d334b326410
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|