How to trigger a crash report
Unlike other report types, crashes cannot be triggered safely from JavaScript — you need to deliberately crash the tab
Reporting-Endpoints: default="https://helios.report-uri.com/a/t/g"
The browser registers the Reporting-Endpoints endpoint when the page
loads. If the tab crashes, the browser — not the crashed tab — queues a
crash report and delivers it on the next available opportunity. Because
the report is generated and sent by the browser process itself, it works even when
the page's JavaScript is completely dead. This gives you real-world crash visibility
across your entire user base with no additional instrumentation required.
[{
"age": 0,
"type": "crash",
"url": "https://report-uri-demo.com/crash/",
"body": {
"reason": "oom"
}
}]
reason"" — generic crash (renderer process terminated unexpectedly) "oom" — out of memory "unresponsive" — tab was killed after becoming unresponsive