Sha256: 6568c165683464fd6dee339222d026b36d777afb6f788893742b1918951be7d1
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 KB
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 # == New Relic Initialization # # When installed as a gem, you can activate the New Relic agent one of the following ways: # # For applications using Bundler, add this to the Gemfile: # gem 'newrelic_rpm' # # You will also need to install the newrelic.yml configuration file # # For applications not using Bundler, and for other installation information, visit: # https://docs.newrelic.com/docs/agents/ruby-agent/installation/install-new-relic-ruby-agent/ # require 'new_relic/control' if defined?(Rails::VERSION) module NewRelic class Railtie < Rails::Railtie if NewRelic::Agent.config[:defer_rails_initialization] initializer "newrelic_rpm.include_method_tracers", before: :load_config_initializers do |app| Module.send(:include, NewRelic::Agent::MethodTracer::ClassMethods) Module.send(:include, NewRelic::Agent::MethodTracer) end initializer "newrelic_rpm.start_plugin", after: :load_config_initializers do |app| NewRelic::Control.instance.init_plugin(config: app.config) end else initializer "newrelic_rpm.start_plugin", before: :load_config_initializers do |app| NewRelic::Control.instance.init_plugin(config: app.config) end end end end else NewRelic::Control.instance.init_plugin end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-8.16.0 | lib/newrelic_rpm.rb |
newrelic_rpm-8.15.0 | lib/newrelic_rpm.rb |
newrelic_rpm-8.14.0 | lib/newrelic_rpm.rb |