A simple statsd client.
Project description
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.
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-4.0.1.tar.gz
(27.8 kB
view details)
Built Distribution
File details
Details for the file statsd-4.0.1.tar.gz
.
File metadata
- Download URL: statsd-4.0.1.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99763da81bfea8daf6b3d22d11aaccb01a8d0f52ea521daab37e758a4ca7d128 |
|
MD5 | 33f9f58c5687cd87977e8b27f5d60e42 |
|
BLAKE2b-256 | 272905e9f50946f4cf2ed182726c60d9c0ae523bb3f180588c574dd9746de557 |
File details
Details for the file statsd-4.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: statsd-4.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2676519927f7afade3723aca9ca8ea986ef5b059556a980a867721ca69df093 |
|
MD5 | 41a8401971f130ec813dcf216a32ab79 |
|
BLAKE2b-256 | f4d0c9543b52c067a390ae6ae632d7fd1b97a35cdc8d69d40c0b7d334b326410 |