Skip to content

jfred/py-statsd

This branch is 181 commits behind sivy/pystatsd:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d6e19b2 · Mar 31, 2011

History

44 Commits
Mar 31, 2011
Feb 27, 2011
Feb 27, 2011
Mar 15, 2011
Feb 27, 2011

Repository files navigation

Introduction
------------

pystatsd is a client and server implementation of Etsy's brilliant statsd server, a front end/proxy for the Graphite stats collection and graphing server.

* Graphite
    - http://graphite.wikidot.com
* Statsd 
    - code: https://github.com/etsy/statsd
    - blog post: http://codeascraft.etsy.com/2011/02/15/measure-anything-measure-everything/

Usage
-------------

See statsd_test for sample usage:

    from pystatsd import Client, Server

    sc = Client('example.org',8125)

    sc.timing('python_test.time',500)
    sc.increment('python_test.inc_int')
    sc.decrement('python_test.decr_int')

    srvr = Server(debug=True)
    srvr.serve()

About

Python client for Statsd

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%