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