Module: NewRelic::Agent::Instrumentation::PadrinoTracer::Prepend
Constant Summary
NewRelic::Agent::Instrumentation::Padrino::INSTRUMENTATION_NAME
Instance Method Summary
collapse
#invoke_route_with_tracing
Instance Method Details
#dispatch ⇒ Object
11
12
13
|
# File 'lib/new_relic/agent/instrumentation/padrino/prepend.rb', line 11
def dispatch
dispatch_with_tracing { super }
end
|
#invoke_route(*args, &block) ⇒ Object
15
16
17
|
# File 'lib/new_relic/agent/instrumentation/padrino/prepend.rb', line 15
def invoke_route(*args, &block)
invoke_route_with_tracing(*args) { super }
end
|