Skip to content
forked from scivey/cystatsd

python encoder for statsd in c++/cython

Notifications You must be signed in to change notification settings

jruere/cystatsd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cystatsd

A c++/cython encoder for batches of statsd metrics.

The main class is cystatsd.MetricCollector, which accepts metrics and converts them into packets for batch submission to a StatsD server. Target packet size is configurable.

This doesn't make any network calls; it just does encoding.

This also doesn't currently do anything clever with stats, like collapsing submissions for the same counter. There's a potential for more optimization there.

Install

It requires Cython to build:

pip install cython

Then:

pip install cystatsd

Example

from cystatsd import MetricCollector
collector = MetricCollector()
collector.push_timer("some_timer", 200)
collector.push_counter("dogs", 2)
collector.push_counter("fish", 5, rate=0.1)
result = collector.flush()
print(result)

Outputs:

[b"some_timer:200|ms\ndogs:2|c\nfish:5|c|@0.10"]

Contributors

  • @leftys added support for set types, gauge deltas and counter decrements. (1.1.0)
  • @scivey initial implementation

License

MIT

About

python encoder for statsd in c++/cython

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 51.0%
  • C++ 45.6%
  • Shell 1.7%
  • Makefile 1.7%