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
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?
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_datain ApplicationControllerThis doesn't seem like the best way to hook into errplane. Are there any hooks currently in the works for this?