Module: OpenTelemetry::Instrumentation::ActionPack::Patches::ActionController::Metal

Defined in:
lib/opentelemetry/instrumentation/action_pack/patches/action_controller/metal.rb

Overview

Module to prepend to ActionController::Metal for instrumentation

Instance Method Summary collapse

Instance Method Details

#dispatch(name, request, response) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/opentelemetry/instrumentation/action_pack/patches/action_controller/metal.rb', line 14

def dispatch(name, request, response)
  rack_span = OpenTelemetry::Instrumentation::Rack.current_span
  rack_span.name = "#{self.class.name}##{name}" if rack_span.context.valid? && !request.env['action_dispatch.exception']

  add_rails_route(rack_span, request) if instrumentation_config[:enable_recognize_route]
  super(name, request, response)
end