Sha256: 6d376633e6a48f6eabf7bd7f92c892db1e65486d734d08869d421dba0413501e

Contents?: true

Size: 1.11 KB

Versions: 52

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

require 'new_relic/agent/instrumentation/sinatra'

DependencyDetection.defer do
  @name = :padrino

  depends_on do
    !NewRelic::Agent.config[:disable_sinatra] &&
      defined?(::Padrino) && defined?(::Padrino::Routing::InstanceMethods)
  end

  executes do
    ::NewRelic::Agent.logger.info 'Installing Padrino instrumentation'

    # Our Padrino instrumentation relies heavily on the fact that Padrino is
    # built on Sinatra. Although it wires up a lot of its own routing logic,
    # we only need to patch into Padrino's dispatch to get things started.
    #
    # Parts of the Sinatra instrumentation (such as the TransactionNamer) are
    # aware of Padrino as a potential target in areas where both Sinatra and
    # Padrino run through the same code.
    module ::Padrino::Routing::InstanceMethods
      include NewRelic::Agent::Instrumentation::Sinatra

      alias dispatch_without_newrelic dispatch!
      alias dispatch! dispatch_with_newrelic
    end
  end
end

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
newrelic_rpm-3.9.4.245 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.9.3.241 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.9.2.239 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.9.1.236 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.9.0.229 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.8.1.221 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.8.0.218 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.3.204 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.3.199 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.2.195 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.2.192 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.2.190.beta lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.1.188 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.1.182 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.1.180 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.0.177 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.7.0.174.beta lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.6.9.171 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.6.8.168 lib/new_relic/agent/instrumentation/padrino.rb
newrelic_rpm-3.6.8.164 lib/new_relic/agent/instrumentation/padrino.rb