Sha256: b5b606372b405b2a69a3c1343008dccf865c0e9a85afc49046acb58d4f85d379
Contents?: true
Size: 1.69 KB
Versions: 32
Compression:
Stored size: 1.69 KB
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. # # A Sampler is used to capture meaningful metrics in a background thread # periodically. They will be invoked about once a minute, each time the agent # sends data to New Relic's servers. # # Samplers can be added to New Relic by subclassing NewRelic::Agent::Sampler. # Instances are created when the agent is enabled and installed. Subclasses # are registered for instantiation automatically. module NewRelic module Agent class Sampler # Exception denotes a sampler is not available and it will not be registered. class Unsupported < StandardError; end attr_reader :id @sampler_classes = [] def self.named(new_name) @name = new_name end def self.name @name end def self.inherited(subclass) @sampler_classes << subclass end # Override with check. Called before instantiating. def self.supported_on_this_platform? true end def self.enabled? if @name config_key = "disable_#{@name}_sampler" !(Agent.config[config_key]) else true end end def self.sampler_classes @sampler_classes end # The ID passed in here is unused by our code, but is preserved in case # we have clients who are defining their own subclasses of this class, and # expecting to be able to call super with an ID. def initialize(id=nil) @id = id || self.class.name end def poll raise "Implement in the subclass" end end end end
Version data entries
32 entries across 32 versions & 2 rubygems