I want to setup a service to collect breakpad crash reports (specifically for an Electron app using Electron Crash Reporter: https://github.com/electron/electron/blob/master/docs/api/crash-reporter.md)
The only servers I can find just dump the minidump and present them in a list which isn't helpful for apps with millions of sessions generating hundreds of crash reports. Something like what Fabric/Crashlytics do for iOS/Android would be ideal (clusters matching reports, sort by release). Also something hosted would be very nice.
- Does a better project exist for collecting breakpad crash reports?
- Are there any good hosted options
- Is there any middleware that will collect breakpad reports and send them to a hosted service like Crashlytics, HockeyApp or Firebase?
Thanks!