Skip to content

Instantly share code, notes, and snippets.

@stympy
Created January 29, 2025 05:27
Show Gist options
  • Save stympy/841740de636e1aaa078445e3a9cf9f6e to your computer and use it in GitHub Desktop.
Save stympy/841740de636e1aaa078445e3a9cf9f6e to your computer and use it in GitHub Desktop.
Include Heroku dyno name in Insights events
# config/initializers/honeybadger.rb
Honeybadger.configure do |config|
config.before_event do |event|
event[:dyno] = ENV['DYNO'] if ENV['DYNO'].present?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment