Sha256: 698c7d285643678aa12a39ae833decf248f7556e070a499ba6f370f1b86d7efc

Contents?: true

Size: 1.1 KB

Versions: 14

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

module Sentry
  class BackpressureMonitor < ThreadedPeriodicWorker
    DEFAULT_INTERVAL = 10
    MAX_DOWNSAMPLE_FACTOR = 10

    def initialize(configuration, client, interval: DEFAULT_INTERVAL)
      super(configuration.logger, interval)
      @client = client

      @healthy = true
      @downsample_factor = 0
    end

    def healthy?
      ensure_thread
      @healthy
    end

    def downsample_factor
      ensure_thread
      @downsample_factor
    end

    def run
      check_health
      set_downsample_factor
    end

    def check_health
      @healthy = !(@client.transport.any_rate_limited? || Sentry.background_worker&.full?)
    end

    def set_downsample_factor
      if @healthy
        log_debug("[BackpressureMonitor] health check positive, reverting to normal sampling") if @downsample_factor.positive?
        @downsample_factor = 0
      else
        @downsample_factor += 1 if @downsample_factor < MAX_DOWNSAMPLE_FACTOR
        log_debug("[BackpressureMonitor] health check negative, downsampling with a factor of #{@downsample_factor}")
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
sentry-ruby-5.21.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.21.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.20.1 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.20.1 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.20.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.20.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.19.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.19.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.18.2 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.18.2 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.18.1 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.18.1 lib/sentry/backpressure_monitor.rb
sentry-ruby-5.18.0 lib/sentry/backpressure_monitor.rb
sentry-ruby-core-5.18.0 lib/sentry/backpressure_monitor.rb