Sha256: da7dad336ad335ea1c28e6fa4a42ae17d737a34720670b84830ea81a7e36a62b
Contents?: true
Size: 1.1 KB
Versions: 12
Compression:
Stored size: 1.1 KB
Contents
# typed: false require_relative '../integration' require_relative 'configuration/settings' require_relative 'patcher' module Datadog module Tracing module Contrib module Aws # Description of AWS integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('2.0') # @public_api Changing the integration name or integration options can cause breaking changes register_as :aws, auto_patch: true def self.version if Gem.loaded_specs['aws-sdk'] Gem.loaded_specs['aws-sdk'].version elsif Gem.loaded_specs['aws-sdk-core'] Gem.loaded_specs['aws-sdk-core'].version end end def self.loaded? !defined?(::Seahorse::Client::Base).nil? end def self.compatible? super && version >= MINIMUM_VERSION end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems