Method: NewRelic::Agent::Instrumentation::ActionDispatchSubscriber#finish

Defined in:
lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb

#finish(name, id, payload) ⇒ Object

[View source]

19
20
21
22
23
24
25
# File 'lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb', line 19

def finish(name, id, payload)
  return unless state.is_execution_traced?

  finish_segment(id, payload)
rescue => e
  log_notification_error(e, name, 'finish')
end