Patcher enables patching of ‘httpx’ with datadog components.
Included modules
- Datadog::Tracing::Contrib::Patcher
Public Instance methods
patch()
loads a session instannce with the datadog plugin, and replaces the base HTTPX::Session with the patched session class.
[show source]
# File lib/httpx/adapters/datadog.rb 320 def patch 321 datadog_session = ::HTTPX.plugin(Plugin) 322 323 ::HTTPX.send(:remove_const, :Session) 324 ::HTTPX.send(:const_set, :Session, datadog_session.class) 325 end
target_version()
[show source]
# File lib/httpx/adapters/datadog.rb 314 def target_version 315 Integration.version 316 end