Datadog
Integration
for HTTPX
.
Included modules
- Contrib::Integration
Constants
MINIMUM_VERSION | = | Gem::Version.new("0.10.2") |
Public Class methods
compatible?()
[show source]
# File lib/httpx/adapters/datadog.rb 335 def self.compatible? 336 super && version >= MINIMUM_VERSION 337 end
loaded?()
[show source]
# File lib/httpx/adapters/datadog.rb 331 def self.loaded? 332 defined?(::HTTPX::Request) 333 end
version()
[show source]
# File lib/httpx/adapters/datadog.rb 327 def self.version 328 Gem.loaded_specs["httpx"] && Gem.loaded_specs["httpx"].version 329 end
Public Instance methods
new_configuration()
[show source]
# File lib/httpx/adapters/datadog.rb 339 def new_configuration 340 Configuration::Settings.new 341 end