Sha256: ec9d3e73292b99a638b7df140ed1cfa901d1d2ca176fd24490a25ea01b717228

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

module OpenTelemetry
  module Instrumentation
    module Mongo
      # Instrumentation class that detects and installs the Mongo instrumentation
      class Instrumentation < OpenTelemetry::Instrumentation::Base
        MINIMUM_VERSION = Gem::Version.new('2.5.0')

        install do |_config|
          require_dependencies
          register_subscriber
        end

        present do
          !defined?(::Mongo::Monitoring::Global).nil?
        end

        compatible do
          gem_version >= MINIMUM_VERSION
        end

        option :peer_service, default: nil, validate: :string

        private

        def gem_version
          Gem.loaded_specs['mongo']&.version
        end

        def require_dependencies
          require_relative 'subscriber'
        end

        def register_subscriber
          # Subscribe to all COMMAND queries with our subscriber class
          ::Mongo::Monitoring::Global.subscribe(::Mongo::Monitoring::COMMAND, Subscriber.new)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
opentelemetry-instrumentation-mongo-0.18.1 lib/opentelemetry/instrumentation/mongo/instrumentation.rb
opentelemetry-instrumentation-mongo-0.18.0 lib/opentelemetry/instrumentation/mongo/instrumentation.rb
opentelemetry-instrumentation-mongo-0.17.0 lib/opentelemetry/instrumentation/mongo/instrumentation.rb