Sha256: 669568f117faf5abe9f958af766ffd8b5722aff939682584dc3040a88074ab50

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

module OpenTelemetry
  module Instrumentation
    module ActionPack
      module Patches
        module ActionController
          # Module to prepend to ActionController::Metal for instrumentation
          module Metal
            def dispatch(name, request, response)
              rack_span = OpenTelemetry::Instrumentation::Rack.current_span
              if rack_span.recording?
                rack_span.name = "#{self.class.name}##{name}" unless request.env['action_dispatch.exception']

                add_rails_route(rack_span, request) if instrumentation_config[:enable_recognize_route]

                rack_span.set_attribute('http.target', request.filtered_path) if request.filtered_path != request.fullpath
              end

              super(name, request, response)
            end

            private

            def add_rails_route(rack_span, request)
              ::Rails.application.routes.router.recognize(request) do |route, _params|
                rack_span.set_attribute('http.route', route.path.spec.to_s)
                # Rails will match on the first route - see https://guides.rubyonrails.org/routing.html#crud-verbs-and-actions
                break
              end
            end

            def instrumentation_config
              ActionPack::Instrumentation.instance.config
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opentelemetry-instrumentation-action_pack-0.2.1 lib/opentelemetry/instrumentation/action_pack/patches/action_controller/metal.rb