Sha256: 019040922994371f144a30f6fe7db51fbf79347758473eae8d6d8026fc5d90d2

Contents?: true

Size: 695 Bytes

Versions: 7

Compression:

Stored size: 695 Bytes

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::Agent::Instrumentation
  module Grape
    module Chain
      def self.instrument!
        Grape::Instrumentation.instrumented_class.class_eval do
          def call_with_new_relic env
            begin
              call_without_new_relic env
            ensure
              Grape::Instrumentation.capture_transaction env, self
            end
          end

          alias_method :call_without_new_relic, :call
          alias_method :call, :call_with_new_relic
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/instrumentation/grape/chain.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/instrumentation/grape/chain.rb