Fabian Groffen

Results 267 comments of Fabian Groffen

Replacement of servers is only possible with fnv1a_ch. The old carbon_ch can only do this if you move the IP from the old machine to the new. ``` cluster member2-replaced...

You could diff the debug output with testing mode on your config to confirm the hash-ring remains the same.

testing mode of the relay (`-t`) does exactly this, doesn't it?

prefix is a collectd thing that just prefixes any produced metric with the string given, e.g. so you can do servers... as prefix (with e.g. puppet). The graphite/carbon system never...

I think you want something to match the tags, which currently doesn't exist. What you experienced is actually a bug, the routing for the metrics was messed up. Tags by...

The main concern is routing matters for consistent-hash based clusters. Metric `a.b;foo=1` should be routed to the same node as `a.b;foo=2`, because routing should only take into account `a.b`. This...

have you tried running your config through the test mode (-t) of the relay? E.g.: ``` $ carbon-c-relay -t -f your.conf ... aggregate ^.pre..foo.bar.m1_rate ^.pre..foo.bar.m5_rate ^.pre..foo.bar.p98 ^.pre..foo.bar.p75 ^.pre.*.foo.bar.mean every 10...

what do you refer to with qps? the actual values produced by the aggregation?

`^([^.]+).prod.[^.]+.([^.]+).m1_rate` is input, so if it's wrong, where does it come from. If you're referring to `\1.prod.\2.m1_rate` being wrong, and exactly 1000x, then I'm still very interested in what your...