Sha256: 947f4e233d473b1052f049afb3278d641ea326e59ea5ee09a21644c1719a24e7
Contents?: true
Size: 1.36 KB
Versions: 11
Compression:
Stored size: 1.36 KB
Contents
# This is the initialization for the New Relic Ruby Agent when used as # a plugin require 'new_relic/control' # If you are having problems seeing data, be sure and check the # newrelic_agent.log files in the log diretory of your application # # If you can't find any log files and you don't see anything in your # application log files, try uncommenting the two lines at the # bottom of this file to verify the plugin is being loaded, # then send the output to support@newrelic.com if you are unable to # resolve the issue. # Initializer for the NewRelic Ruby Agent # After verison 2.0 of Rails we can access the configuration directly. # We need it to add dev mode routes after initialization finished. begin current_config = if defined?(config) config elsif defined?(Rails.configuration) Rails.configuration end NewRelic::Control.instance.init_plugin :config => current_config rescue => e NewRelic::Control.instance.log! "Error initializing New Relic plugin (#{e})", :error NewRelic::Control.instance.log! e.backtrace.join("\n"), :error NewRelic::Control.instance.log! "Agent is disabled." end #ClassLoadingWatcher.flag_const_missing = nil # # ::RAILS_DEFAULT_LOGGER.warn "New Relic detected environment: #{NewRelic::Control.instance.local_env.to_s}, RAILS_ENV: #{RAILS_ENV}" # ::RAILS_DEFAULT_LOGGER.warn "Enabled? #{NewRelic::Control.instance.agent_enabled?}"
Version data entries
11 entries across 11 versions & 2 rubygems