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 320 def self.compatible? 321 super && version >= MINIMUM_VERSION 322 end
loaded?()
[show source]
# File lib/httpx/adapters/datadog.rb 316 def self.loaded? 317 defined?(::HTTPX::Request) 318 end
version()
[show source]
# File lib/httpx/adapters/datadog.rb 312 def self.version 313 Gem.loaded_specs["httpx"] && Gem.loaded_specs["httpx"].version 314 end
Public Instance methods
new_configuration()
[show source]
# File lib/httpx/adapters/datadog.rb 324 def new_configuration 325 Configuration::Settings.new 326 end