class Datadog::Tracing::Contrib::HTTPX::Integration

  1. lib/httpx/adapters/datadog.rb
Superclass: Object

Methods

Public Class

  1. compatible?
  2. loaded?
  3. version

Public Instance

  1. new_configuration
  2. patcher

Included modules

  1. Contrib::Integration

Constants

MINIMUM_VERSION = Gem::Version.new("0.10.2")  

Public Class methods

compatible?()
[show source]
    # File lib/httpx/adapters/datadog.rb
310 def self.compatible?
311   super && version >= MINIMUM_VERSION
312 end
loaded?()
[show source]
    # File lib/httpx/adapters/datadog.rb
306 def self.loaded?
307   defined?(::HTTPX::Request)
308 end
version()
[show source]
    # File lib/httpx/adapters/datadog.rb
302 def self.version
303   Gem.loaded_specs["httpx"] && Gem.loaded_specs["httpx"].version
304 end

Public Instance methods

new_configuration()
[show source]
    # File lib/httpx/adapters/datadog.rb
314 def new_configuration
315   Configuration::Settings.new
316 end
patcher()
[show source]
    # File lib/httpx/adapters/datadog.rb
318 def patcher
319   Patcher
320 end