You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently subscribe to a single ActionController related topic, process_action.action_controller via lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb. We should be subscribing to these others as well:
start_processing.action_controller
send_file.action_controller
send_data.action_controller
redirect_to.action_controller
halted_callback.action_controller
unpermitted_parameters.action_controller
Our subscription method is regex based, so we could potentially use /\.action_controller$/.
So the regex here would simply be altered so that it could match the existing process_action.action_controller topic AND all of the other topic listed above.
We currently subscribe to a single ActionController related topic,
process_action.action_controller
vialib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
. We should be subscribing to these others as well:start_processing.action_controller
send_file.action_controller
send_data.action_controller
redirect_to.action_controller
halted_callback.action_controller
unpermitted_parameters.action_controller
Our subscription method is regex based, so we could potentially use
/\.action_controller$/
.So the regex here would simply be altered so that it could match the existing
process_action.action_controller
topic AND all of the other topic listed above.Resources:
The text was updated successfully, but these errors were encountered: