Sha256: bf2026fb885cdd44bdca7e603032f38add2d4c02e0d3ee908a4d8826985a33e7

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

module SemanticLogger
  module JRuby
    class GarbageCollectionLogger
      include Java::JavaxManagement::NotificationListener

      # Only log the garbage collection if the number of microseconds exceeds
      # this value
      def initialize(min_microseconds = 10000)
        @min_microseconds = min_microseconds
      end

      # Must leave the method name as-is so that it can be found by Java
      def handleNotification(notification, _)
        # Only care about GARBAGE_COLLECTION_NOTIFICATION notifications
        return unless notification.get_type == Java::ComSunManagement::GarbageCollectionNotificationInfo::GARBAGE_COLLECTION_NOTIFICATION

        info = Java::ComSunManagement::GarbageCollectionNotificationInfo.from(notification.user_data)
        gc_info = info.gc_info
        duration = gc_info.duration
        if duration >= @min_microseconds
          SemanticLogger['GarbageCollector'].benchmark_warn "Garbage Collection completed: #{info.gc_name} ##{gc_info.id}", duration: duration.to_f / 1000
        end
      end
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
semantic_logger-2.15.0 lib/semantic_logger/jruby/garbage_collection_logger.rb
semantic_logger-2.14.0 lib/semantic_logger/jruby/garbage_collection_logger.rb
semantic_logger-2.13.1 lib/semantic_logger/jruby/garbage_collection_logger.rb
semantic_logger-2.13.0 lib/semantic_logger/jruby/garbage_collection_logger.rb