ElectronMinidump

Captures and sends minidumps via Electrons built in crashReporter uploader. Renderer and GPU crashes will only include minimal context because of limitations of the crashReporter uploader . For full context, you should prefer the default SentryMinidump integration .

If you add the ElectronMinidump integration, the SentryMinidump integration will be automatically removed to avoid duplicate crashes being reported.

Copied
import * as Sentry from "@sentry/electron";

Sentry.init({
  dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
  integrations: [Sentry.Integrations.ElectronMinidump()],
});
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").