Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to exclude exceptions client side before .send_event? #1908

Closed
moenodedev opened this issue Sep 30, 2022 · 4 comments
Closed

How to exclude exceptions client side before .send_event? #1908

moenodedev opened this issue Sep 30, 2022 · 4 comments
Assignees
Labels

Comments

@moenodedev
Copy link

moenodedev commented Sep 30, 2022

We use a Sidekiq job with async to filter exceptions and run other commands (like statsd) before and after reporting the event to Sentry.

When running rails console we see a deprecation warning about the Sentry async config.

$ bin/rails console
W, [2022-09-30T14:46:29.718291 #306]  WARN -- sentry: 
  sentry-ruby now sends events asynchronously by default with its background worker (supported since 4.1.0).
  The `config.async` callback has become redundant while continuing to cause issues.
  (The problems of `async` are detailed in https://github.com/getsentry/sentry-ruby/issues/1522)

  Therefore, we encourage you to remove it and let the background worker take care of async job sending.
It's deprecation is planned in the next major release (6.0), which is scheduled around the 3rd quarter of 2022.

Loading production environment (Rails 7.0.4)
irb(main):001:0> 

How do we do we filter events and run custom commands after reporting client side? How can old code be converted to the new system?

# config/initializers/sentry.rb

Sentry.init do |config|
  config.async = ->(event, hint) {
    SentryJob.perform_later(event, hint)
  }
end
# app/jobs/sentry_job.rb

class SentryJob < ApplicationJob
  queue_as :default

  def perform(event, hint)
    # filter noisy exceptions that would push us over the Sentry account exception limit
    if event["transaction"] == "DataJob"
      return if event["exception"]["values"].any? { |e| e["type"] == "DataJobError" }
    end

    Sentry.send_event(event, hint)

    # increment the sentry exception metric for our statsd dashboard
    StatsD.increment("sentry.exception")
  rescue Exception => e
    Rails.logger.error "#{e.class.name} - #{e.message}"
  end
@moenodedev
Copy link
Author

Related to #1522 and #1894 and #1522 (comment)

@moenodedev moenodedev changed the title How to filter exceptions before send_event? How to exclude exceptions client side before .send_event? Sep 30, 2022
@sl0thentr0py
Copy link
Member

@moenodedev if you're only using errors, you can just do this

Sentry.init do |config|
  config.before_send = lambda do |event, hint|
    return nil if hint[:exception].is_a?(DataJobError)

    StatsD.increment("sentry.exception")
  end
end

@moenodedev
Copy link
Author

moenodedev commented Oct 6, 2022

In addition to the exception class and message we needed the calling class and we were able to get that from event.to_hash[:transaction].

Sentry.init do |config|
  config.breadcrumbs_logger = [:active_support_logger, :http_logger]

  config.before_send = lambda do |event, hint|
    exception = hint[:exception]
    event_hash = event.to_hash

    if event_hash[:transaction] == "Sidekiq/PgHeroStatsJob"
      if exception.is_a?(PgHero::Error) && exception.message.match?(/Database not found/)
        StatsD.increment("sentry.exceptions.filtered")
        return nil
      end
    end

    StatsD.increment("sentry.exceptions.reported")

    event
  end
end

https://docs.sentry.io/platforms/ruby/configuration/options/
https://www.rubydoc.info/gems/sentry-ruby-core/Sentry/ErrorEvent

@sl0thentr0py
Copy link
Member

cool @moenodedev glad you figured it out! closing since resolved, please reopen if necessary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants