-
-
Notifications
You must be signed in to change notification settings - Fork 514
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
Comments
Related to #1522 and #1894 and #1522 (comment) |
@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 |
In addition to the exception class and message we needed the calling class and we were able to get that from 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/ |
cool @moenodedev glad you figured it out! closing since resolved, please reopen if necessary. |
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 Sentryasync
config.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?
The text was updated successfully, but these errors were encountered: