Sha256: d087741dc4fa23b218b42724f183efeccbeae2d9ff0e7cec8468f6aba563cd94

Contents?: true

Size: 791 Bytes

Versions: 30

Compression:

Stored size: 791 Bytes

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.

require 'thread'
require 'new_relic/agent/vm/snapshot'

module NewRelic
  module Agent
    module VM
      class JRubyVM
        def snapshot
          snap = Snapshot.new
          gather_stats(snap)
          snap
        end

        def gather_stats(snap)
          if supports?(:gc_runs)
            gc_stats = GC.stat
            snap.gc_runs = gc_stats[:count]
          end

          snap.thread_count = Thread.list.size
        end

        def supports?(key)
          case key
          when :gc_runs, :thread_count
            true
          else
            false
          end
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
newrelic_rpm-4.8.0.341 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.7.1.340 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.7.0.339 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.6.0.338 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.5.0.337 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.4.0.336 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.3.0.335 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.2.0.334 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.1.0.333 lib/new_relic/agent/vm/jruby_vm.rb
newrelic_rpm-4.0.0.332 lib/new_relic/agent/vm/jruby_vm.rb