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 305 def self.compatible? 306 super && version >= MINIMUM_VERSION 307 end
loaded?()
[show source]
# File lib/httpx/adapters/datadog.rb 301 def self.loaded? 302 defined?(::HTTPX::Request) 303 end
version()
[show source]
# File lib/httpx/adapters/datadog.rb 297 def self.version 298 Gem.loaded_specs["httpx"] && Gem.loaded_specs["httpx"].version 299 end
Public Instance methods
new_configuration()
[show source]
# File lib/httpx/adapters/datadog.rb 309 def new_configuration 310 Configuration::Settings.new 311 end