Sha256: 8247dd03342de4741cedde17adbcdf021c540e96536e51232b5bea786d50d6b4

Contents?: true

Size: 679 Bytes

Versions: 8

Compression:

Stored size: 679 Bytes

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require 'new_relic/agent/sampler'

module NewRelic
  module Agent
    module Samplers
      class ObjectSampler < NewRelic::Agent::Sampler
        named :object

        def self.supported_on_this_platform?
          NewRelic::LanguageSupport.object_space_usable? && ObjectSpace.respond_to?(:live_objects)
        end

        def poll
          live_objects = ObjectSpace.live_objects
          NewRelic::Agent.record_metric("GC/objects", live_objects)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
newrelic_rpm-9.0.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.16.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.15.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.14.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.13.1 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.13.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.12.0 lib/new_relic/agent/samplers/object_sampler.rb
newrelic_rpm-8.11.0 lib/new_relic/agent/samplers/object_sampler.rb