Class: Statsd::Graphite
- Inherits:
-
EM::Connection
- Object
- EM::Connection
- Statsd::Graphite
- Defined in:
- lib/statsd/graphite.rb
Instance Attribute Summary collapse
-
#counters ⇒ Object
Returns the value of attribute counters.
-
#flush_interval ⇒ Object
Returns the value of attribute flush_interval.
-
#timers ⇒ Object
Returns the value of attribute timers.
Instance Method Summary collapse
-
#flush_stats ⇒ Object
def unbind p ‘ connection totally closed’ EventMachine::stop_event_loop end.
-
#initialize(*args) ⇒ Graphite
constructor
A new instance of Graphite.
- #post_init ⇒ Object
- #receive_data(data) ⇒ Object
Constructor Details
#initialize(*args) ⇒ Graphite
Returns a new instance of Graphite.
7 8 9 10 11 |
# File 'lib/statsd/graphite.rb', line 7 def initialize(*args) puts args super # stuff here... end |
Instance Attribute Details
#counters ⇒ Object
Returns the value of attribute counters.
5 6 7 |
# File 'lib/statsd/graphite.rb', line 5 def counters @counters end |
#flush_interval ⇒ Object
Returns the value of attribute flush_interval.
5 6 7 |
# File 'lib/statsd/graphite.rb', line 5 def flush_interval @flush_interval end |
#timers ⇒ Object
Returns the value of attribute timers.
5 6 7 |
# File 'lib/statsd/graphite.rb', line 5 def timers @timers end |
Instance Method Details
#flush_stats ⇒ Object
def unbind
p ' connection totally closed'
EventMachine::stop_event_loop
end
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/statsd/graphite.rb', line 29 def flush_stats print "#{Time.now} Flushing #{counters.count} counters and #{timers.count} timers to Graphite." stat_string = '' time = ::Benchmark.realtime do ts = Time.now.to_i num_stats = 0 # store counters counters.each_pair do |key,value| = "stats.#{key} #{value} #{ts}\n" stat_string += counters[key] = 0 num_stats += 1 end # store timers timers.each_pair do |key, values| if (values.length > 0) pct_threshold = 90 values.sort! count = values.count min = values.first max = values.last mean = min max_at_threshold = max if (count > 1) # strip off the top 100-threshold threshold_index = (((100 - pct_threshold) / 100.0) * count).round values = values[0..-threshold_index] max_at_threshold = values.last # average the remaining timings sum = values.inject( 0 ) { |s,x| s+x } mean = sum / values.count end = "" += "stats.timers.#{key}.mean #{mean} #{ts}\n" += "stats.timers.#{key}.upper #{max} #{ts}\n" += "stats.timers.#{key}.upper_#{pct_threshold} #{max_at_threshold} #{ts}\n" += "stats.timers.#{key}.lower #{min} #{ts}\n" += "stats.timers.#{key}.count #{count} #{ts}\n" stat_string += timers[key] = [] num_stats += 1 end end stat_string += "statsd.numStats #{num_stats} #{ts}\n" end # send to graphite send_data stat_string puts "complete. (#{time.round(3)}s)" close_connection_after_writing end |
#post_init ⇒ Object
13 14 15 16 17 18 |
# File 'lib/statsd/graphite.rb', line 13 def post_init # puts counters.size # send_data 'Hello' # puts 'hello' # close_connection_after_writing end |
#receive_data(data) ⇒ Object
20 21 22 |
# File 'lib/statsd/graphite.rb', line 20 def receive_data(data) p data end |