Sha256: 10536d1d83f3fb791653893e13f506f613f4855528f414ca0b395bbfd796a60e

Contents?: true

Size: 1.53 KB

Versions: 10

Compression:

Stored size: 1.53 KB

Contents

module Sentry
  module Rails
    module Tracing
      class AbstractSubscriber

        class << self
          def subscribe!
            raise NotImplementedError
          end

          def unsubscribe!
            ActiveSupport::Notifications.unsubscribe(self::EVENT_NAME)
          end

          def subscribe_to_event(event_name)
            if ::Rails.version.to_i == 5
              ActiveSupport::Notifications.subscribe(event_name) do |_, start, finish, _, payload|
                next unless Tracing.get_current_transaction

                duration = finish.to_f - start.to_f
                yield(event_name, duration, payload)
              end
            else
              ActiveSupport::Notifications.subscribe(event_name) do |event|
                next unless Tracing.get_current_transaction

                yield(event_name, event.duration, event.payload)
              end
            end
          end

          def record_on_current_span(duration:, **options)
            return unless options[:start_timestamp]

            scope = Sentry.get_current_scope
            transaction = scope.get_transaction
            return unless transaction && transaction.sampled

            span = transaction.start_child(**options)
            # duration in ActiveSupport is computed in millisecond
            # so we need to covert it as second before calculating the timestamp
            span.set_timestamp(span.start_timestamp + duration / 1000)
            yield(span) if block_given?
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sentry-rails-4.1.6 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.5 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.4 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.3 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.2 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.1 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.1.0 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-4.0.0 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-0.3.0 lib/sentry/rails/tracing/abstract_subscriber.rb
sentry-rails-0.2.0 lib/sentry/rails/tracing/abstract_subscriber.rb