Skip to content

Instantly share code, notes, and snippets.

@stympy
Created July 9, 2025 20:07
Show Gist options
  • Save stympy/576a4b06a3c47b60fb503b88d21c453f to your computer and use it in GitHub Desktop.
Save stympy/576a4b06a3c47b60fb503b88d21c453f to your computer and use it in GitHub Desktop.
Log only slow requests
Honeybadger.configure do |config|
config.before_event do |event|
event.halt! unless event.event_type == "process_action.action_controller"
event.halt! unless event[:duration] > 1.0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment