Class: Statsd::Batch

Inherits:
Statsd show all
Extended by:
Forwardable
Defined in:
lib/statsd.rb

Overview

Batch: A batching statsd proxy

Batch is a subclass of Statsd, but with a constructor that proxies to a normal Statsd instance. It has it’s own batch_size and namespace parameters (that inherit defaults from the supplied Statsd instance). It is recommended that some care is taken if setting very large batch sizes. If the batch size exceeds the allowed packet size for UDP on your network, communication troubles may occur and data will be lost.

Examples:

Batch a set of instruments using Batch and manual flush:

$statsd = Statsd.new 'localhost', 8125
batch = Statsd::Batch.new($statsd)
batch.increment 'garets'
batch.timing 'glork', 320
batch.gauge 'bork', 100
batch.flush

Instance Attribute Summary collapse

Attributes inherited from Statsd

#delimiter, #host, #namespace, #port, #postfix, #prefix, #stat_delimiter

Instance Method Summary collapse

Methods inherited from Statsd

#batch, #connect, #count, #decrement, #gauge, #increment, #set, #time, #timing

Constructor Details

#initialize(statsd) ⇒ Batch

Returns a new instance of Batch.

Parameters:

  • statsd (Statsd)

    requires a configured Statsd instance



63
64
65
66
67
68
69
70
71
# File 'lib/statsd.rb', line 63

def initialize(statsd)
  @statsd = statsd
  @batch_size = statsd.batch_size
  @batch_byte_size = statsd.batch_byte_size
  @flush_interval = statsd.flush_interval
  @backlog = []
  @backlog_bytesize = 0
  @last_flush = Time.now
end

Instance Attribute Details

#batch_byte_sizeObject

Returns the value of attribute batch_byte_size.



60
61
62
# File 'lib/statsd.rb', line 60

def batch_byte_size
  @batch_byte_size
end

#batch_sizeObject

Returns the value of attribute batch_size.



60
61
62
# File 'lib/statsd.rb', line 60

def batch_size
  @batch_size
end

#flush_intervalObject

Returns the value of attribute flush_interval.



60
61
62
# File 'lib/statsd.rb', line 60

def flush_interval
  @flush_interval
end

Instance Method Details

#easy {|Batch| ... } ⇒ Object

A convenience method to ensure that data is not lost in the event of an exception being thrown. Batches will be transmitted on the parent socket as soon as the batch is full, and when the block finishes.

Yields:

  • (Batch)

    yields itself



78
79
80
81
82
# File 'lib/statsd.rb', line 78

def easy
  yield self
ensure
  flush
end

#flushObject



84
85
86
87
88
89
90
91
# File 'lib/statsd.rb', line 84

def flush
  unless @backlog.empty?
    @statsd.send_to_socket @backlog.join("\n")
    @backlog.clear
    @backlog_bytesize = 0
    @last_flush = Time.now
  end
end