brubeck
brubeck copied to clipboard
A Statsd-compatible metrics aggregator
Trying to create a debian package for this.. and default it runs make test.. Which has failed tests.. perhaps because of this (from compile step): ``` gcc -g -Wall -O3...
config.json: ``` { ... "http" : "127.0.0.1:8080", ... } ``` **Expected**: brubeck should bind only to the loopback interface / 127.0.0.1. **Actual**: brubeck binds it's http listener on all interfaces...
Hi Seems like brubeck got overflow, when handling gauge-value more, than 2^32 (4294967296). (I did not find in statsd specification max values for gauge: https://github.com/etsy/statsd/blob/master/docs/metric_types.md, and in my production envs...
In statsd metrics that are outputted through to graphite are namespaced with rules described at https://github.com/etsy/statsd/blob/master/docs/namespacing.md This change would also allow backends a way to inspect more information about metric...
etsy statsd supports metrics of type `set`. This PR adds request for the set type to brubeck. https://github.com/etsy/statsd/blob/master/docs/metric_types.md#sets
as title.
PR #24 added in functionality to log bad keys sent to the StatsD sampler, but commit 1a0b863b removed that code and reverts Brubeck to logging `packet_drop` messages again. Was this...
I'm trying to compile brubeck on Debian Sid with the following library versions: ``` ➜ brubeck git:(master) ✗ dpkg -l libmicrohttpd-dev libjansson-dev libssl-dev gcc Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err:...
Right now sending the following values... `val:-1|g` `val:-1|g` `val:-1|g` ...in a flush cycle will output a final value of -3. But since this is a gauge, it's expected to be...