You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes there are bots that detect a 500 on a page and keep sending requests probing for vulnerabilities basically generating thousands and thousands of reports to Rollbar of the same exception.
Is there a way to limit / throttle the same exception from being sent thousands of times in a few seconds? eg
Rollbar.configure do |config|
# ...
# don't report the same exception more than once every minute
config.throttle_duplicate_reports = 1.minutes
# ...
end
The text was updated successfully, but these errors were encountered:
Sometimes there are bots that detect a 500 on a page and keep sending requests probing for vulnerabilities basically generating thousands and thousands of reports to Rollbar of the same exception.
Is there a way to limit / throttle the same exception from being sent thousands of times in a few seconds? eg
The text was updated successfully, but these errors were encountered: