2015-08-27 08:11:51 -07:00
|
|
|
# crashReporter
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-04-21 15:39:12 -07:00
|
|
|
> Submit crash reports to a remote server.
|
2015-08-25 05:01:57 -07:00
|
|
|
|
2016-11-03 10:26:00 -07:00
|
|
|
Process: [Main](../tutorial/quick-start.md#main-process), [Renderer](../tutorial/quick-start.md#renderer-process)
|
|
|
|
|
2015-08-25 05:16:20 -07:00
|
|
|
The following is an example of automatically submitting a crash report to a
|
|
|
|
remote server:
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
```javascript
|
2016-07-25 18:39:25 -07:00
|
|
|
const {crashReporter} = require('electron')
|
2015-08-28 10:50:30 -07:00
|
|
|
|
2013-11-14 13:39:44 +08:00
|
|
|
crashReporter.start({
|
|
|
|
productName: 'YourName',
|
|
|
|
companyName: 'YourCompany',
|
2015-11-13 16:03:40 +08:00
|
|
|
submitURL: 'https://your-domain.com/url-to-submit',
|
2013-11-14 13:39:44 +08:00
|
|
|
autoSubmit: true
|
2016-07-25 18:39:25 -07:00
|
|
|
})
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
2016-03-17 22:29:32 +09:00
|
|
|
For setting up a server to accept and process crash reports, you can use
|
|
|
|
following projects:
|
|
|
|
|
|
|
|
* [socorro](https://github.com/mozilla/socorro)
|
2016-05-06 10:09:24 -07:00
|
|
|
* [mini-breakpad-server](https://github.com/electron/mini-breakpad-server)
|
2016-03-17 22:29:32 +09:00
|
|
|
|
2016-10-05 14:10:45 -07:00
|
|
|
Crash reports are saved locally in an application-specific temp directory folder.
|
|
|
|
For a `productName` of `YourName`, crash reports will be stored in a folder
|
|
|
|
named `YourName Crashes` inside the temp directory. You can customize this temp
|
|
|
|
directory location for your app by calling the `app.setPath('temp', '/my/custom/temp')`
|
|
|
|
API before starting the crash reporter.
|
|
|
|
|
2015-08-25 05:01:57 -07:00
|
|
|
## Methods
|
|
|
|
|
2016-11-21 15:42:24 -08:00
|
|
|
The `crashReporter` module has the following methods:
|
2015-08-25 05:01:57 -07:00
|
|
|
|
|
|
|
### `crashReporter.start(options)`
|
2013-11-13 19:12:13 +08:00
|
|
|
|
2016-02-16 12:11:05 +08:00
|
|
|
* `options` Object
|
2016-10-30 21:46:20 +11:00
|
|
|
* `companyName` String (optional)
|
2016-02-16 12:11:05 +08:00
|
|
|
* `submitURL` String - URL that crash reports will be sent to as POST.
|
2016-09-08 11:52:21 -07:00
|
|
|
* `productName` String (optional) - Defaults to `app.getName()`.
|
2016-11-22 19:30:20 +11:00
|
|
|
* `uploadToServer` Boolean (optional) _macOS_ - Whether crash reports should be sent to the server
|
2016-02-16 12:11:05 +08:00
|
|
|
Default is `true`.
|
2016-10-30 21:46:20 +11:00
|
|
|
* `ignoreSystemCrashHandler` Boolean (optional) - Default is `false`.
|
|
|
|
* `extra` Object (optional) - An object you can define that will be sent along with the
|
2016-02-16 12:11:05 +08:00
|
|
|
report. Only string properties are sent correctly, Nested objects are not
|
|
|
|
supported.
|
2014-05-22 14:20:17 +02:00
|
|
|
|
2016-11-28 15:37:06 -08:00
|
|
|
You are required to call this method before using any other `crashReporter` APIs
|
2016-11-23 15:36:03 -08:00
|
|
|
and in each process (main/renderer) from which you want to collect crash reports.
|
2016-11-28 15:37:06 -08:00
|
|
|
You can pass different options to `crashReporter.start` when calling from different processes.
|
2016-11-23 15:36:03 -08:00
|
|
|
|
|
|
|
**Note:** On Windows and Linux, Electron uses `breakpad` for crash collection and reporting.
|
|
|
|
Crashes can be collected from the main and renderer process, but not from the child processes
|
2016-11-28 15:37:06 -08:00
|
|
|
created via the `child_process` module.
|
2016-11-23 15:36:03 -08:00
|
|
|
|
|
|
|
**Note:** On macOS, Electron uses a new `crashpad` client for crash collection and reporting.
|
|
|
|
Crashes can be collected from the main, renderer and any of the child processes created via the `child_process` module.
|
2016-11-28 15:37:06 -08:00
|
|
|
If you want to enable crash reporting, initializing `crashpad` from the main process using `crashReporter.start` is required
|
2016-11-23 15:36:03 -08:00
|
|
|
regardless of which process you want to collect crashes from. Once initialized this way, the crashpad handler collects
|
|
|
|
crashes from all processes. You still have to call `crashReporter.start` from the renderer process, otherwise crashes from
|
|
|
|
renderer processes will get reported without `companyName`, `productName` or any of the `extra` information.
|
2015-05-30 10:03:59 +08:00
|
|
|
|
2015-08-25 05:01:57 -07:00
|
|
|
### `crashReporter.getLastCrashReport()`
|
2014-11-11 20:20:36 +08:00
|
|
|
|
2016-11-08 15:54:34 +11:00
|
|
|
Returns [`CrashReport`](structures/crash-report.md):
|
2016-09-25 12:59:30 +13:00
|
|
|
|
2015-07-23 18:02:45 +01:00
|
|
|
Returns the date and ID of the last crash report. If no crash reports have been
|
|
|
|
sent or the crash reporter has not been started, `null` is returned.
|
2014-11-11 20:20:36 +08:00
|
|
|
|
2015-08-25 05:01:57 -07:00
|
|
|
### `crashReporter.getUploadedReports()`
|
2015-06-05 19:05:55 +08:00
|
|
|
|
2016-11-08 15:54:34 +11:00
|
|
|
Returns [`CrashReport[]`](structures/crash-report.md):
|
2016-09-25 12:59:30 +13:00
|
|
|
|
2015-08-26 16:28:44 -07:00
|
|
|
Returns all uploaded crash reports. Each report contains the date and uploaded
|
|
|
|
ID.
|
2015-06-05 19:05:55 +08:00
|
|
|
|
2016-11-22 19:30:20 +11:00
|
|
|
### `crashReporter.getUploadToServer()` _macOS_
|
2016-11-08 11:12:46 +11:00
|
|
|
|
|
|
|
Returns `Boolean` - Whether reports should be submitted to the server. Set through
|
2016-11-22 19:30:20 +11:00
|
|
|
the `start` method or `setUploadToServer`.
|
2016-11-08 11:12:46 +11:00
|
|
|
|
2016-11-28 15:03:38 -08:00
|
|
|
**Note:** This API can only be called from the main process.
|
2016-11-08 13:39:11 +13:00
|
|
|
|
2016-11-22 19:30:20 +11:00
|
|
|
### `crashReporter.setUploadToServer(uploadToServer)` _macOS_
|
2016-11-08 11:03:57 +11:00
|
|
|
|
2016-11-22 19:30:20 +11:00
|
|
|
* `uploadToServer` Boolean _macOS_ - Whether reports should be submitted to the server
|
2016-11-08 11:03:57 +11:00
|
|
|
|
2016-11-28 15:03:10 -08:00
|
|
|
This would normally be controlled by user preferences. This has no effect if
|
|
|
|
called before `start` is called.
|
2016-11-08 11:03:57 +11:00
|
|
|
|
2016-11-28 15:03:38 -08:00
|
|
|
**Note:** This API can only be called from the main process.
|
2016-11-08 13:39:11 +13:00
|
|
|
|
2016-11-21 15:42:24 -08:00
|
|
|
## Crash Report Payload
|
2014-05-22 14:20:17 +02:00
|
|
|
|
2016-04-22 22:53:26 +09:00
|
|
|
The crash reporter will send the following data to the `submitURL` as
|
|
|
|
a `multipart/form-data` `POST`:
|
2014-05-22 14:20:17 +02:00
|
|
|
|
2015-08-25 05:18:02 -07:00
|
|
|
* `ver` String - The version of Electron.
|
|
|
|
* `platform` String - e.g. 'win32'.
|
|
|
|
* `process_type` String - e.g. 'renderer'.
|
2015-11-12 21:20:09 +08:00
|
|
|
* `guid` String - e.g. '5e1286fc-da97-479e-918b-6bfb0c3d1c72'
|
2015-08-25 05:18:02 -07:00
|
|
|
* `_version` String - The version in `package.json`.
|
2015-08-25 05:16:20 -07:00
|
|
|
* `_productName` String - The product name in the `crashReporter` `options`
|
2015-08-25 05:18:02 -07:00
|
|
|
object.
|
|
|
|
* `prod` String - Name of the underlying product. In this case Electron.
|
2015-08-25 05:16:20 -07:00
|
|
|
* `_companyName` String - The company name in the `crashReporter` `options`
|
2015-08-25 05:18:02 -07:00
|
|
|
object.
|
2016-03-17 22:29:32 +09:00
|
|
|
* `upload_file_minidump` File - The crash report in the format of `minidump`.
|
2016-10-10 14:31:05 +00:00
|
|
|
* All level one properties of the `extra` object in the `crashReporter`
|
|
|
|
`options` object.
|