Sha256: 89f10322a363e1ba5aa65f74a37feeed914cc389d80e65e7d347a02b42c51a17

Contents?: true

Size: 1.6 KB

Versions: 4

Compression:

Stored size: 1.6 KB

Contents

# typed: false

require 'datadog/tracing/contrib/integration'
require 'datadog/tracing/contrib/sidekiq/configuration/settings'
require 'datadog/tracing/contrib/sidekiq/patcher'

module Datadog
  module Tracing
    module Contrib
      module Sidekiq
        # Description of Sidekiq integration
        class Integration
          include Contrib::Integration

          MINIMUM_VERSION = Gem::Version.new('3.5.4')
          MINIMUM_SERVER_INTERNAL_TRACING_VERSION = Gem::Version.new('5.2.4')

          # @public_api Changing the integration name or integration options can cause breaking changes
          register_as :sidekiq

          def self.version
            Gem.loaded_specs['sidekiq'] && Gem.loaded_specs['sidekiq'].version
          end

          def self.loaded?
            !defined?(::Sidekiq).nil?
          end

          def self.compatible?
            super && version >= MINIMUM_VERSION
          end

          # Only patch server internals on v5.2.4+ because that's when loading of
          # `Sidekiq::Launcher` stabilized. Sidekiq 4+ technically can support our
          # patches (with minor adjustments), but in order to avoid explicitly
          # requiring `sidekiq/launcher` ourselves (which could affect gem
          # initialization order), we are limiting this tracing to v5.2.4+.
          def self.compatible_with_server_internal_tracing?
            version >= MINIMUM_SERVER_INTERNAL_TRACING_VERSION
          end

          def new_configuration
            Configuration::Settings.new
          end

          def patcher
            Patcher
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ddtrace-1.2.0 lib/datadog/tracing/contrib/sidekiq/integration.rb
ddtrace-1.1.0 lib/datadog/tracing/contrib/sidekiq/integration.rb
ddtrace-1.0.0 lib/datadog/tracing/contrib/sidekiq/integration.rb
ddtrace-1.0.0.beta2 lib/datadog/tracing/contrib/sidekiq/integration.rb