Sha256: 7c48be7a92d910b79266dab7690c612993416694d620158488a862c96ec61c45

Contents?: true

Size: 643 Bytes

Versions: 1

Compression:

Stored size: 643 Bytes

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require_relative 'instrumentation'

module NewRelic::Agent::Instrumentation
  module AwsSdkLambda::Prepend
    include NewRelic::Agent::Instrumentation::AwsSdkLambda

    def invoke(*args)
      invoke_with_new_relic(*args) { super }
    end

    def invoke_async(*args)
      invoke_async_with_new_relic(*args) { super }
    end

    def invoke_with_response_stream(*args)
      invoke_with_response_stream_with_new_relic(*args) { super }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
newrelic_rpm-9.16.0 lib/new_relic/agent/instrumentation/aws_sdk_lambda/prepend.rb