Skip to content

Instantly share code, notes, and snippets.

@stympy
Created March 21, 2025 21:33
Show Gist options
  • Save stympy/6d2b40f27070742fe8ec5645c58f5bb0 to your computer and use it in GitHub Desktop.
Save stympy/6d2b40f27070742fe8ec5645c58f5bb0 to your computer and use it in GitHub Desktop.
Sampling events to send to Honeybadger Insights
# 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