Created
March 21, 2025 21:33
-
-
Save stympy/6d2b40f27070742fe8ec5645c58f5bb0 to your computer and use it in GitHub Desktop.
Sampling events to send to Honeybadger Insights
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/honeybadger.rb | |
require "zlib" | |
PERCENT_TO_SEND = 10 | |
Honeybadger.configure do |config| | |
config.before_event do |event| | |
if event[:request_id] # Send all events for a given request | |
event.halt! unless Zlib.crc32(event[:request_id].to_s) % 100 < PERCENT_TO_SEND | |
else # Otherwise just take a random sample | |
event.halt! unless rand(100) < PERCENT_TO_SEND | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment