Open kaylareopelle opened 2 weeks ago
The db_runtime and view_runtime attributes are generated by Rails and attached to the process_action.action_controller notification.
db_runtime
view_runtime
process_action.action_controller
These attributes sum up the ms spent on DB-related actions and view-related actions respectively.
https://guides.rubyonrails.org/active_support_instrumentation.html#process-action-action-controller
Let's understand the value of these attributes more deeply and emit telemetry that leverages them.
https://new-relic.atlassian.net/browse/NR-336047
The
db_runtime
andview_runtime
attributes are generated by Rails and attached to theprocess_action.action_controller
notification.These attributes sum up the ms spent on DB-related actions and view-related actions respectively.
https://guides.rubyonrails.org/active_support_instrumentation.html#process-action-action-controller
Let's understand the value of these attributes more deeply and emit telemetry that leverages them.