class Skylight::Core::Probes::Excon::Probe
Probe
for instrumenting Excon
requests. Installs {Excon::Middleware} to achieve this.
Public Instance Methods
install()
click to toggle source
# File lib/skylight/core/probes/excon.rb, line 6 def install if defined?(::Excon::Middleware) # Don't require until installation since it depends on Excon being loaded require "skylight/core/probes/excon/middleware" idx = ::Excon.defaults[:middlewares].index(::Excon::Middleware::Instrumentor) # TODO: Handle possibility of idx being nil ::Excon.defaults[:middlewares].insert(idx, Probes::Excon::Middleware) else # Using $stderr here isn't great, but we don't have a logger accessible $stderr.puts "[SKYLIGHT::CORE] [#{Skylight::Core::VERSION}] The installed version of Excon doesn't " \ "support Middlewares. The Excon probe will be disabled." end end