1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
======================
A Python statsd client
======================
statsd_ is a friendly front-end to Graphite_. This is a Python client
for the statsd daemon.
.. image:: https://github.com/jsocol/pystatsd/actions/workflows/ci.yml/badge.svg
:target: https://github.com/jsocol/pystatsd/actions/workflows/ci.yml
:alt: Latest CI status
.. image:: https://img.shields.io/pypi/v/statsd.svg
:target: https://pypi.python.org/pypi/statsd/
:alt: Latest release
.. image:: https://img.shields.io/pypi/pyversions/statsd.svg
:target: https://pypi.python.org/pypi/statsd/
:alt: Supported Python versions
.. image:: https://img.shields.io/pypi/wheel/statsd.svg
:target: https://pypi.python.org/pypi/statsd/
:alt: Wheel Status
:Code: https://github.com/jsocol/pystatsd
:License: MIT; see LICENSE file
:Issues: https://github.com/jsocol/pystatsd/issues
:Documentation: https://statsd.readthedocs.io/
Quickly, to use:
.. code-block:: python
>>> 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:
.. code-block:: python
>>> 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_.
.. _statsd: https://github.com/etsy/statsd
.. _Graphite: https://graphite.readthedocs.io/
.. _ReadTheDocs: https://statsd.readthedocs.io/en/latest/index.html
|