Class: Appsignal::Integrations::Railtie Private
- Defined in:
- lib/appsignal/integrations/railtie.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .add_instrumentation_middleware(app) ⇒ Object private
- .after_initialize(app) ⇒ Object private
- .initialize_error_reporter ⇒ Object private
- .load_default_config ⇒ Object private
- .on_load(app) ⇒ Object private
- .start ⇒ Object private
Class Method Details
.add_instrumentation_middleware(app) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/appsignal/integrations/railtie.rb', line 57 def self.add_instrumentation_middleware(app) app.middleware.insert( 0, ::Rack::Events, [Appsignal::Rack::EventHandler.new] ) app.middleware.insert_after( ActionDispatch::DebugExceptions, Appsignal::Rack::RailsInstrumentation ) end |
.after_initialize(app) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
38 39 40 |
# File 'lib/appsignal/integrations/railtie.rb', line 38 def self.after_initialize(app) Appsignal::Integrations::Railtie.start if app.config.appsignal.start_at == :after_initialize end |
.initialize_error_reporter ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
69 70 71 72 73 74 |
# File 'lib/appsignal/integrations/railtie.rb', line 69 def self.initialize_error_reporter return unless Appsignal.config[:enable_rails_error_reporter] return unless Rails.respond_to?(:error) Rails.error.subscribe(Appsignal::Integrations::RailsErrorReporterSubscriber) end |
.load_default_config ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
42 43 44 45 46 47 48 49 50 |
# File 'lib/appsignal/integrations/railtie.rb', line 42 def self.load_default_config Appsignal::Config.add_loader_defaults( :rails, :root_path => Rails.root, :env => Rails.env, :name => Appsignal::Utils::RailsHelper.detected_rails_app_name, :log_path => Rails.root.join("log") ) end |
.on_load(app) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
29 30 31 32 33 34 35 36 |
# File 'lib/appsignal/integrations/railtie.rb', line 29 def self.on_load(app) load_default_config Appsignal::Integrations::Railtie.add_instrumentation_middleware(app) return unless app.config.appsignal.start_at == :on_load Appsignal::Integrations::Railtie.start end |
.start ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
52 53 54 55 |
# File 'lib/appsignal/integrations/railtie.rb', line 52 def self.start Appsignal.start initialize_error_reporter if Appsignal.started? end |