Method: NewRelic::Agent::SamplerCollection#poll_samplers

Defined in:
lib/new_relic/agent/sampler_collection.rb

#poll_samplersObject

[View source]

37
38
39
40
41
42
43
44
45
46
47
# File 'lib/new_relic/agent/sampler_collection.rb', line 37

def poll_samplers
  @samplers.delete_if do |sampler|
    begin
      sampler.poll
      false # it's okay.  don't delete it.
    rescue => e
      ::NewRelic::Agent.logger.warn("Removing #{sampler} from list", e)
      true # remove the sampler
    end
  end
end