Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Add #batch method for backwards compatibility #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/statsd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions spec/statsd_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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' }

Expand Down