Module: ActionController::Instrumentation
- Extended by:
 - ActiveSupport::Concern
 
- Includes:
 - AbstractController::Logger
 
- Included in:
 - Base
 
- Defined in:
 - actionpack/lib/action_controller/metal/instrumentation.rb
 
Overview
# Action Controller Instrumentation
Adds instrumentation to several ends in ActionController::Base. It also provides some hooks related with process_action. This allows an ORM like Active Record and/or DataMapper to plug in ActionController and show related information.
Check ActiveRecord::Railties::ControllerRuntime for an example.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
- 
  
    
      #initialize  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - #redirect_to ⇒ Object
 - #render ⇒ Object
 - #send_data(data, options = {}) ⇒ Object
 - #send_file(path, options = {}) ⇒ Object
 
Methods included from ActiveSupport::Concern
append_features, class_methods, extended, included, prepend_features, prepended
Instance Method Details
#initialize ⇒ Object
:nodoc:
      23 24 25 26  | 
    
      # File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 23 def initialize(...) # :nodoc: super self.view_runtime = nil end  | 
  
#redirect_to ⇒ Object
      49 50 51 52 53 54 55 56  | 
    
      # File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 49 def redirect_to(*) ActiveSupport::Notifications.instrument("redirect_to.action_controller", request: request) do |payload| result = super payload[:status] = response.status payload[:location] = response.filtered_location result end end  | 
  
#render ⇒ Object
      28 29 30 31 32 33 34  | 
    
      # File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 28 def render(*) render_output = nil self.view_runtime = cleanup_view_runtime do ActiveSupport::Benchmark.realtime(:float_millisecond) { render_output = super } end render_output end  | 
  
#send_data(data, options = {}) ⇒ Object
      43 44 45 46 47  | 
    
      # File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 43 def send_data(data, = {}) ActiveSupport::Notifications.instrument("send_data.action_controller", ) do super end end  | 
  
#send_file(path, options = {}) ⇒ Object
      36 37 38 39 40 41  | 
    
      # File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 36 def send_file(path, = {}) ActiveSupport::Notifications.instrument("send_file.action_controller", .merge(path: path)) do super end end  |