Sha256: 94afb2a80ac485268073431eaf48408256a2954ca8351c286e19333a77186bf2
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
# encoding: utf-8 require "logstash/devutils/rspec/spec_helper" require "logstash/inputs/ganglia" require "support/client" module GangliaHelpers def setup_clients(number_of_clients, port) number_of_clients.times.inject([]) do |clients| clients << GangliaClient.new(localhost, port) end end def input(config, size, &block) pipeline = LogStash::Pipeline.new(config) queue = Queue.new pipeline.instance_eval do # create closure to capture queue @output_func = lambda { |event| queue << event } # output_func is now a method, call closure def output_func(event) @output_func.call(event) end end pipeline_thread = Thread.new { pipeline.run } sleep 0.1 while !pipeline.ready? block.call sleep 0.1 while queue.size != size result = size.times.inject([]) do |acc| acc << queue.pop end pipeline.shutdown pipeline_thread.join result end # def input end RSpec.configure do |c| c.include GangliaHelpers end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logstash-input-ganglia-2.0.0 | spec/spec_helper.rb |