Sha256: b62f07f8ead48dc1ca31b81b917a57dbd53aeccbd56802cd62d1452b6f460833
Contents?: true
Size: 461 Bytes
Versions: 1
Compression:
Stored size: 461 Bytes
Contents
# (c) Copyright IBM Corp. 2021 # (c) Copyright Instana Inc. 2021 module Instana module Activators class Excon < Activator def can_instrument? defined?(::Excon) && defined?(::Excon::Middleware::Base) && Instana.config[:excon][:enabled] end def instrument require 'instana/instrumentation/excon' ::Excon.defaults[:middlewares].unshift(::Instana::Instrumentation::Excon) true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
instana-1.195.1 | lib/instana/activators/excon.rb |