class FFWD::Plugin::Statsd::InputUDP
Public Class Methods
plugin_type()
click to toggle source
# File lib/ffwd/plugin/statsd.rb, line 34 def self.plugin_type "statsd" end
Public Instance Methods
receive_data(data)
click to toggle source
# File lib/ffwd/plugin/statsd.rb, line 38 def receive_data data data.split("\n").each do |line| receive_statsd_frame line end end