Sha256: c3a29becdeeabdbe44a6b656e71dc97d9eba96d2bcea41fa8a49d55ec0af7f74
Contents?: true
Size: 1.22 KB
Versions: 9
Compression:
Stored size: 1.22 KB
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. module NewRelic module Agent module Instrumentation module PadrinoTracer module Chain def self.instrument! ::Padrino::Routing::InstanceMethods.module_eval do include NewRelic::Agent::Instrumentation::Sinatra def dispatch_with_newrelic dispatch_with_tracing { dispatch_without_newrelic } end alias dispatch_without_newrelic dispatch! alias dispatch! dispatch_with_newrelic # Padrino 0.13 mustermann routing if private_method_defined?(:invoke_route) include NewRelic::Agent::Instrumentation::Padrino def invoke_route_with_newrelic(*args, &block) invoke_route_with_tracing(*args) { invoke_route_without_newrelic(*args, &block) } end alias invoke_route_without_newrelic invoke_route alias invoke_route invoke_route_with_newrelic end end end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems