# File lib/new_relic/agent/vm/mri_vm.rb, line 25
        def gather_gc_stats(snap)
          if supports?(:gc_runs)
            snap.gc_runs = GC.count
          end

          if GC.respond_to?(:stat)
            gc_stats = GC.stat
            snap.total_allocated_object = gc_stats[:total_allocated_objects] || gc_stats[:total_allocated_object]
            snap.major_gc_count = gc_stats[:major_gc_count]
            snap.minor_gc_count = gc_stats[:minor_gc_count]
            snap.heap_live = gc_stats[:heap_live_slots] || gc_stats[:heap_live_slot] || gc_stats[:heap_live_num]
            snap.heap_free = gc_stats[:heap_free_slots] || gc_stats[:heap_free_slot] || gc_stats[:heap_free_num]
          end
        end