2015-08-27 15:11:51 +00:00
# crashReporter
2013-08-14 22:43:35 +00:00
2016-04-21 22:39:12 +00:00
> Submit crash reports to a remote server.
2015-08-25 12:01:57 +00:00
2016-11-23 19:20:56 +00:00
Process: [Main ](../glossary.md#main-process ), [Renderer ](../glossary.md#renderer-process )
2016-11-03 17:26:00 +00:00
2015-08-25 12:16:20 +00:00
The following is an example of automatically submitting a crash report to a
remote server:
2013-08-14 22:43:35 +00:00
```javascript
2018-09-13 16:10:51 +00:00
const { crashReporter } = require('electron')
2015-08-28 17:50:30 +00:00
2013-11-14 05:39:44 +00:00
crashReporter.start({
productName: 'YourName',
companyName: 'YourCompany',
2015-11-13 08:03:40 +00:00
submitURL: 'https://your-domain.com/url-to-submit',
2017-01-11 00:07:10 +00:00
uploadToServer: true
2016-07-26 01:39:25 +00:00
})
2013-08-14 22:43:35 +00:00
```
2016-03-17 13:29:32 +00: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 17:09:24 +00:00
* [mini-breakpad-server ](https://github.com/electron/mini-breakpad-server )
2016-03-17 13:29:32 +00:00
2018-02-26 22:37:18 +00:00
Or use a 3rd party hosted solution:
2019-05-09 17:30:37 +00:00
* [Backtrace ](https://backtrace.io/electron/ )
2018-06-19 15:32:37 +00:00
* [Sentry ](https://docs.sentry.io/clients/electron )
2019-05-07 02:37:24 +00:00
* [BugSplat ](https://www.bugsplat.com/docs/platforms/electron )
2018-02-26 22:37:18 +00:00
2016-10-05 21:10:45 +00: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 12:01:57 +00:00
## Methods
2016-11-21 23:42:24 +00:00
The `crashReporter` module has the following methods:
2015-08-25 12:01:57 +00:00
### `crashReporter.start(options)`
2013-11-13 11:12:13 +00:00
2016-02-16 04:11:05 +00:00
* `options` Object
2018-08-16 16:15:17 +00:00
* `companyName` String
2016-02-16 04:11:05 +00:00
* `submitURL` String - URL that crash reports will be sent to as POST.
2019-04-30 20:55:33 +00:00
* `productName` String (optional) - Defaults to `app.name` .
2019-05-28 17:17:01 +00:00
* `uploadToServer` Boolean (optional) - Whether crash reports should be sent to the server. Default is `true` .
2016-10-30 10:46:20 +00:00
* `ignoreSystemCrashHandler` Boolean (optional) - Default is `false` .
2019-08-05 17:45:58 +00:00
* `extra` Record< String , String > (optional) - An object you can define that will be sent along with the
2017-02-02 21:01:49 +00:00
report. Only string properties are sent correctly. Nested objects are not
2019-05-28 17:17:01 +00:00
supported. When using Windows, the property names and values must be fewer than 64 characters.
2019-06-21 21:19:21 +00:00
* `crashesDirectory` String (optional) - Directory to store the crash reports temporarily (only used when the crash reporter is started via `process.crashReporter.start` ).
2014-05-22 12:20:17 +00:00
2016-11-28 23:37:06 +00:00
You are required to call this method before using any other `crashReporter` APIs
2016-11-23 23:36:03 +00:00
and in each process (main/renderer) from which you want to collect crash reports.
2016-11-28 23:37:06 +00:00
You can pass different options to `crashReporter.start` when calling from different processes.
2016-11-23 23:36:03 +00:00
2017-02-02 21:01:49 +00:00
**Note** Child processes created via the `child_process` module will not have access to the Electron modules.
2017-01-18 05:59:23 +00:00
Therefore, to collect crash reports from them, use `process.crashReporter.start` instead. Pass the same options as above
along with an additional one called `crashesDirectory` that should point to a directory to store the crash
2017-01-24 22:04:56 +00:00
reports temporarily. You can test this out by calling `process.crash()` to crash the child process.
2017-01-18 05:59:23 +00:00
2017-02-09 20:47:02 +00:00
**Note:** If you need send additional/updated `extra` parameters after your
2018-02-20 13:26:10 +00:00
first call `start` you can call `addExtraParameter` on macOS or call `start`
2017-02-09 20:47:02 +00:00
again with the new/updated `extra` parameters on Linux and Windows.
2019-06-13 06:42:21 +00:00
**Note:** On macOS and windows, Electron uses a new `crashpad` client for crash collection and reporting.
2017-01-11 00:07:10 +00:00
If you want to enable crash reporting, initializing `crashpad` from the main process using `crashReporter.start` is required
2016-11-23 23:36:03 +00:00
regardless of which process you want to collect crashes from. Once initialized this way, the crashpad handler collects
2017-01-18 05:59:23 +00:00
crashes from all processes. You still have to call `crashReporter.start` from the renderer or child process, otherwise crashes from
them will get reported without `companyName` , `productName` or any of the `extra` information.
2015-05-30 02:03:59 +00:00
2015-08-25 12:01:57 +00:00
### `crashReporter.getLastCrashReport()`
2014-11-11 12:20:36 +00:00
2016-11-08 04:54:34 +00:00
Returns [`CrashReport` ](structures/crash-report.md ):
2016-09-24 23:59:30 +00:00
2019-03-20 22:34:21 +00:00
Returns the date and ID of the last crash report. Only crash reports that have been uploaded will be returned; even if a crash report is present on disk it will not be returned until it is uploaded. In the case that there are no uploaded reports, `null` is returned.
2014-11-11 12:20:36 +00:00
2015-08-25 12:01:57 +00:00
### `crashReporter.getUploadedReports()`
2015-06-05 11:05:55 +00:00
2016-11-08 04:54:34 +00:00
Returns [`CrashReport[]`](structures/crash-report.md):
2016-09-24 23:59:30 +00:00
2015-08-26 23:28:44 +00:00
Returns all uploaded crash reports. Each report contains the date and uploaded
ID.
2015-06-05 11:05:55 +00:00
2019-06-13 06:42:21 +00:00
### `crashReporter.getUploadToServer()`
2016-11-08 00:12:46 +00:00
2017-11-29 10:58:24 +00:00
Returns `Boolean` - Whether reports should be submitted to the server. Set through
2016-11-22 08:30:20 +00:00
the `start` method or `setUploadToServer` .
2016-11-08 00:12:46 +00:00
2016-11-28 23:03:38 +00:00
**Note:** This API can only be called from the main process.
2016-11-08 00:39:11 +00:00
2019-06-13 06:42:21 +00:00
### `crashReporter.setUploadToServer(uploadToServer)`
2016-11-08 00:03:57 +00:00
2017-11-29 10:38:35 +00:00
* `uploadToServer` Boolean _macOS_ - Whether reports should be submitted to the server.
2016-11-08 00:03:57 +00:00
2016-11-28 23:03:10 +00:00
This would normally be controlled by user preferences. This has no effect if
called before `start` is called.
2016-11-08 00:03:57 +00:00
2016-11-28 23:03:38 +00:00
**Note:** This API can only be called from the main process.
2016-11-08 00:39:11 +00:00
2019-06-13 06:42:21 +00:00
### `crashReporter.addExtraParameter(key, value)` _macOS_ _Windows_
2017-11-02 01:57:43 +00:00
* `key` String - Parameter key, must be less than 64 characters long.
* `value` String - Parameter value, must be less than 64 characters long.
Set an extra parameter to be sent with the crash report. The values
2019-06-13 06:42:21 +00:00
specified here will be sent in addition to any values set via the `extra` option when `start` was called. This API is only available on macOS and windows, if you need to add/update extra parameters on Linux after your first call to `start` you can call `start` again with the updated `extra` options.
2017-02-09 20:47:02 +00:00
2019-06-13 06:42:21 +00:00
### `crashReporter.removeExtraParameter(key)` _macOS_ _Windows_
2017-11-02 01:21:41 +00:00
* `key` String - Parameter key, must be less than 64 characters long.
Remove a extra parameter from the current set of parameters so that it will not be sent with the crash report.
### `crashReporter.getParameters()`
See all of the current parameters being passed to the crash reporter.
2016-11-21 23:42:24 +00:00
## Crash Report Payload
2014-05-22 12:20:17 +00:00
2016-04-22 13:53:26 +00:00
The crash reporter will send the following data to the `submitURL` as
a `multipart/form-data` `POST` :
2014-05-22 12:20:17 +00:00
2015-08-25 12:18:02 +00:00
* `ver` String - The version of Electron.
* `platform` String - e.g. 'win32'.
* `process_type` String - e.g. 'renderer'.
2017-11-29 10:38:35 +00:00
* `guid` String - e.g. '5e1286fc-da97-479e-918b-6bfb0c3d1c72'.
2015-08-25 12:18:02 +00:00
* `_version` String - The version in `package.json` .
2015-08-25 12:16:20 +00:00
* `_productName` String - The product name in the `crashReporter` `options`
2015-08-25 12:18:02 +00:00
object.
* `prod` String - Name of the underlying product. In this case Electron.
2015-08-25 12:16:20 +00:00
* `_companyName` String - The company name in the `crashReporter` `options`
2015-08-25 12:18:02 +00:00
object.
2016-03-17 13:29:32 +00: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.