Dedupe

Deduplicate certain events to avoid receiving duplicate errors. (default)

Import name: Sentry.dedupeIntegration

This integration is enabled by default. If you'd like to modify your default integrations, read this.

This integration deduplicates certain events. It can be helpful if you're receiving many duplicate errors. Note, that Sentry only compares stack traces and fingerprints.

The following code sample will let you choose your personal config from the dropdown, once you're logged in.
Copied
import * as Sentry from "@sentry/bun";

Sentry.init({
  dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
  integrations: [Sentry.dedupeIntegration()],
});
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").