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