We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to support sending data per-request with a nice hook like https://bugsnag.com/docs/notifiers/ruby#sending-custom-data-with-exceptions
After reading the source, I'm able to send custom data by overriding the errplane_request_data in ApplicationController
errplane_request_data
def errplane_request_data request_data = super request_data[:custom_data] = {} request_data[:custom_data][:more_data] = { user_id: 123 } request_data end
This doesn't seem like the best way to hook into errplane. Are there any hooks currently in the works for this?
The text was updated successfully, but these errors were encountered:
Austen,
This seems like a good idea. I'll see if I can get it added in sometime this week and push a release. Thanks for the suggestion!
Sorry, something went wrong.
awesome! Thanks for all of the support!
No branches or pull requests
It would be great to support sending data per-request with a nice hook like https://bugsnag.com/docs/notifiers/ruby#sending-custom-data-with-exceptions
After reading the source, I'm able to send custom data by overriding the
errplane_request_data
in ApplicationControllerThis doesn't seem like the best way to hook into errplane. Are there any hooks currently in the works for this?
The text was updated successfully, but these errors were encountered: