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 341 def self.compatible? 342 super && version >= MINIMUM_VERSION 343 end
loaded?()
[show source]
# File lib/httpx/adapters/datadog.rb 337 def self.loaded? 338 defined?(::HTTPX::Request) 339 end
version()
[show source]
# File lib/httpx/adapters/datadog.rb 333 def self.version 334 Gem.loaded_specs["httpx"] && Gem.loaded_specs["httpx"].version 335 end
Public Instance methods
new_configuration()
[show source]
# File lib/httpx/adapters/datadog.rb 345 def new_configuration 346 Configuration::Settings.new 347 end