module NewRelic::Agent::Instrumentation::RackURLMap
Public Class Methods
Source
# File lib/new_relic/agent/instrumentation/rack/instrumentation.rb, line 75 def self.generate_traced_map(map) map.inject({}) do |traced_map, (url, handler)| traced_map[url] = NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(handler, true) traced_map end end