zbx-statsd is a clone of Etsy's statsd and Steve Ivy's py-statsd designed to work with Zabbix (http://zabbix.com).
pistolero/zbx-statsd
master
Name already in use
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Introduction ------------ zbx-statsd is a clone of Etsy's statsd and Steve Ivy's py-statsd designed to work with Zabbix as stats collection and graphing backend. Based on sources of pystatsd. * pystatsd - https://github.com/sivy/py-statsd/ * 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 ------------- Client: from zbx-statsd import Client, Server sc = Client('example.org',8125, 'zabbix_name_of_this_machine') sc.timing('python_test.time',500) sc.increment('python_test.inc_int') sc.decrement('python_test.decr_int') Server: srvr = Server(debug=True) srvr.serve()
About
zbx-statsd is a clone of Etsy's statsd and Steve Ivy's py-statsd designed to work with Zabbix (http://zabbix.com).