Class: Datadog::Contrib::Aws::Integration

Inherits:
Object
  • Object
show all
Includes:
Integration
Defined in:
lib/ddtrace/contrib/aws/integration.rb

Overview

Description of AWS integration

Constant Summary collapse

MINIMUM_VERSION =
Gem::Version.new('2.0')

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Integration

included

Class Method Details

.compatible?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/ddtrace/contrib/aws/integration.rb', line 29

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

.loaded?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/ddtrace/contrib/aws/integration.rb', line 25

def self.loaded?
  !defined?(::Seahorse::Client::Base).nil?
end

.versionObject



17
18
19
20
21
22
23
# File 'lib/ddtrace/contrib/aws/integration.rb', line 17

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

Instance Method Details

#default_configurationObject



33
34
35
# File 'lib/ddtrace/contrib/aws/integration.rb', line 33

def default_configuration
  Configuration::Settings.new
end

#patcherObject



37
38
39
# File 'lib/ddtrace/contrib/aws/integration.rb', line 37

def patcher
  Patcher
end