Sha256: da571aa7f609ddb5d496024f5cf682caa1ba80cd969607d0d31110f707d99da9

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 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)
              end
            end

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

Version data entries

2 entries across 2 versions & 1 rubygems

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