Sha256: ccb6fae8a9b0717619420d0dd10102e7642888ae9376748785878ad4f674fe54

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

# frozen_string_literal: true

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

module OpenTelemetry
  module Instrumentation
    module RubyKafka
      # The Instrumentation class contains logic to detect and install the
      # KafkaRuby instrumentation
      class Instrumentation < OpenTelemetry::Instrumentation::Base
        MINIMUM_VERSION = Gem::Version.new('0.7.0')

        install do |_config|
          require_patches
          patch
        end

        present do
          !defined?(::Kafka).nil?
        end

        compatible do
          (!gem_version.nil? && gem_version >= MINIMUM_VERSION)
        end

        private

        def gem_version
          Gem::Version.new(Kafka::VERSION)
        end

        def require_patches
          require_relative 'patches/async_producer'
          require_relative 'patches/producer'
          require_relative 'patches/consumer'
          require_relative 'patches/client'
        end

        def patch
          ::Kafka::AsyncProducer.prepend(Patches::AsyncProducer)
          ::Kafka::Producer.prepend(Patches::Producer)
          ::Kafka::Consumer.prepend(Patches::Consumer)
          ::Kafka::Client.prepend(Patches::Client)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opentelemetry-instrumentation-ruby_kafka-0.21.0 lib/opentelemetry/instrumentation/ruby_kafka/instrumentation.rb
opentelemetry-instrumentation-ruby_kafka-0.20.2 lib/opentelemetry/instrumentation/ruby_kafka/instrumentation.rb