module ActionController::Instrumentation

def redirect_to(*args)

def redirect_to(*args)
  ActiveSupport::Notifications.instrument("redirect_to.action_controller") do |payload|
    result = super
    payload[:status]   = self.status
    payload[:location] = self.location
    result
  end
end