Sha256: e62b59287b01ede831efd12ddfb0136353029642e5ab85591ad7641ffad9469e

Contents?: true

Size: 1.18 KB

Versions: 22

Compression:

Stored size: 1.18 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.

module NewRelic
  module Agent
    module Instrumentation
      module Rails4
        module Errors

          # @api public
          # @deprecated
          def newrelic_notice_error(exception, custom_params = {})
            NewRelic::Agent::Deprecator.deprecate("ActionController#newrelic_notice_error",
                                                  "NewRelic::Agent#notice_error")

            NewRelic::Agent::Transaction.notice_error(exception,
                                                      :custom_params => custom_params)
          end
        end
      end
    end
  end
end

DependencyDetection.defer do
  @name = :rails4_error

  depends_on do
    defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 4
  end

  depends_on do
    defined?(ActionController) && defined?(ActionController::Base)
  end

  executes do
    ::NewRelic::Agent.logger.info 'Installing Rails 4 Error instrumentation'
  end

  executes do
    class ActionController::Base
      include NewRelic::Agent::Instrumentation::Rails4::Errors
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
newrelic_rpm-3.18.1.330 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.18.0.329 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.17.2.327 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.17.1.326 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.17.0.325 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.16.3.323 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.16.2.321 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.16.1.320 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.16.0.318 lib/new_relic/agent/instrumentation/rails4/errors.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/newrelic_rpm-3.15.2.317/lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.15.2.317 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.15.1.316 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.15.0.314 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.14.3.313 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.14.2.312 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.14.1.311 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.14.0.305 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.13.2.302 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.13.1.300 lib/new_relic/agent/instrumentation/rails4/errors.rb
newrelic_rpm-3.13.0.299 lib/new_relic/agent/instrumentation/rails4/errors.rb