Sha256: 831ce9bd280912ea82e4e11765e6cb2d2499068337eddc6d9edc74142cac1cb5

Contents?: true

Size: 1.86 KB

Versions: 5

Compression:

Stored size: 1.86 KB

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require 'new_relic/agent/instrumentation/notifications_subscriber'

module NewRelic
  module Agent
    module Instrumentation
      class ActiveStorageSubscriber < NotificationsSubscriber
        def start(name, id, payload)
          return unless state.is_execution_traced?

          start_segment(name, id, payload)
        rescue => e
          log_notification_error(e, name, 'start')
        end

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

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

        def start_segment(name, id, payload)
          segment = Tracer.start_segment(name: metric_name(name, payload))
          segment.params[:key] = payload[:key]
          segment.params[:exist] = payload[:exist] if payload.key?(:exist)
          push_segment(id, segment)
        end

        def finish_segment(id, payload)
          if segment = pop_segment(id)
            if exception = exception_object(payload)
              segment.notice_error(exception)
            end
            segment.finish
          end
        end

        def metric_name(name, payload)
          service = payload[:service]
          method = method_from_name(name)
          "Ruby/ActiveStorage/#{service}Service/#{method}"
        end

        PATTERN = /\Aservice_([^\.]*)\.active_storage\z/
        UNKNOWN = "unknown".freeze

        METHOD_NAME_MAPPING = Hash.new do |h, k|
          if PATTERN =~ k
            h[k] = $1
          else
            h[k] = UNKNOWN
          end
        end

        def method_from_name(name)
          METHOD_NAME_MAPPING[name]
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
newrelic_rpm-8.15.0 lib/new_relic/agent/instrumentation/active_storage_subscriber.rb
newrelic_rpm-8.14.0 lib/new_relic/agent/instrumentation/active_storage_subscriber.rb
newrelic_rpm-8.13.1 lib/new_relic/agent/instrumentation/active_storage_subscriber.rb
newrelic_rpm-8.13.0 lib/new_relic/agent/instrumentation/active_storage_subscriber.rb
newrelic_rpm-8.12.0 lib/new_relic/agent/instrumentation/active_storage_subscriber.rb