Sha256: 58007b17675c5743094fe5f8e5c5f0b078d5c1a9204ed899d5944ae71cd1af87

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

require "sentry/rails/tracing/abstract_subscriber"
require "sentry/rails/instrument_payload_cleanup_helper"

module Sentry
  module Rails
    module Tracing
      class ActionControllerSubscriber < AbstractSubscriber
        extend InstrumentPayloadCleanupHelper

        EVENT_NAMES = ["process_action.action_controller"].freeze
        OP_NAME = "view.process_action.action_controller"
        SPAN_ORIGIN = "auto.view.rails"

        def self.subscribe!
          Sentry.logger.warn <<~MSG
            DEPRECATION WARNING: sentry-rails has changed its approach on controller span recording and #{self.name} is now depreacted.
            Please stop using or referencing #{self.name} as it will be removed in the next major release.
          MSG

          subscribe_to_event(EVENT_NAMES) do |event_name, duration, payload|
            controller = payload[:controller]
            action = payload[:action]

            record_on_current_span(
              op: OP_NAME,
              origin: SPAN_ORIGIN,
              start_timestamp: payload[START_TIMESTAMP_NAME],
              description: "#{controller}##{action}",
              duration: duration
            ) do |span|
              payload = payload.dup
              cleanup_data(payload)
              span.set_data(:payload, payload)
              span.set_http_status(payload[:status])
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sentry-rails-5.22.2 lib/sentry/rails/tracing/action_controller_subscriber.rb
sentry-rails-5.22.1 lib/sentry/rails/tracing/action_controller_subscriber.rb
sentry-rails-5.22.0 lib/sentry/rails/tracing/action_controller_subscriber.rb
sentry-rails-5.21.0 lib/sentry/rails/tracing/action_controller_subscriber.rb