Sha256: cf7a1637f85efba71b986a8e78a3cc9570601118ca13de6a1a9857a70f9309be
Contents?: true
Size: 848 Bytes
Versions: 1
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 require 'opentelemetry' module OpenTelemetry module Instrumentation module HTTP # The Instrumentation class contains logic to detect and install the Http instrumentation class Instrumentation < OpenTelemetry::Instrumentation::Base install do |_config| require_dependencies patch end present do !(defined?(::HTTP) && Gem.loaded_specs['http']).nil? end def patch ::HTTP::Client.prepend(Patches::Client) ::HTTP::Connection.prepend(Patches::Connection) end def require_dependencies require_relative 'patches/client' require_relative 'patches/connection' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-instrumentation-http-0.16.2 | lib/opentelemetry/instrumentation/http/instrumentation.rb |