diff --git a/lib/statsd.rb b/lib/statsd.rb index 0881fb2..a26e87b 100644 --- a/lib/statsd.rb +++ b/lib/statsd.rb @@ -184,6 +184,12 @@ def time(stat, sample_rate=1) # for the stat. def histogram(stat, value, sample_rate=1); send stat, value, HISTOGRAM_TYPE, sample_rate end + # Provided for backwards compatibility to systems that expect a batch method. + # Buffering will transparently be used if its enabled, otherwise this is a noop. + def batch + yield self + end + private def sampled(sample_rate) yield unless sample_rate < 1 and rand > sample_rate diff --git a/spec/statsd_spec.rb b/spec/statsd_spec.rb index ab6c582..933c54c 100644 --- a/spec/statsd_spec.rb +++ b/spec/statsd_spec.rb @@ -127,6 +127,14 @@ def socket; @socket ||= FakeUDPSocket.new end end end + describe "#batch" do + it "should yield itself" do + @statsd.batch { |s| + s.must_equal @statsd + } + end + end + describe "with namespace" do before { @statsd.namespace = 'service' }