Sha256: eca59489d7b51039158dc5b54201e63b8256782261a68cea06b44e4e8dc0864b

Contents?: true

Size: 445 Bytes

Versions: 7

Compression:

Stored size: 445 Bytes

Contents

# Copyright (c) 2013 AppNeta, Inc.
# All rights reserved.

module Oboe
  module Inst
    def self.load_instrumentation
      # Load the general instrumentation
      pattern = File.join(File.dirname(__FILE__), 'inst', '*.rb')
      Dir.glob(pattern) do |f|
        begin
          require f
        rescue => e
          Oboe.logger.error "[oboe/loading] Error loading instrumentation file '#{f}' : #{e}"
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
oboe-2.7.1.7 lib/oboe/instrumentation.rb
oboe-2.7.1.7-java lib/oboe/instrumentation.rb
oboe-2.7.0.3-java lib/oboe/instrumentation.rb
oboe-2.7.0.3 lib/oboe/instrumentation.rb
oboe-2.6.8 lib/oboe/instrumentation.rb
oboe-2.6.7.1 lib/oboe/instrumentation.rb
oboe-2.6.6.1 lib/oboe/instrumentation.rb