Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Default Integrations
excerpt: ""
description: "Learn more about system integrations InboundFilters, FunctionToString, Breadcrumbs, GlobalHandlers, LinkedErrors, and UserAgent that are enabled by default to integrate into the standard library or the interpreter itself."
description: "Learn more about system integrations Dedupe, InboundFilters, FunctionToString, Breadcrumbs, GlobalHandlers, LinkedErrors, and UserAgent, that are enabled by default to integrate into the standard library or the interpreter itself."
redirect_from:
- /platforms/javascript/integrations/default/
- /platforms/javascript/default-integrations/
Expand Down Expand Up @@ -126,6 +126,14 @@ _Import name: `Sentry.Integrations.UserAgent`_

This integration attaches user-agent information to the event, which allows us to correctly catalog and tag them with specific OS, browser, and version information.

### Dedupe

_Import name: `Sentry.Integrations.Dedupe`_

This integration deduplicates certain events. It can be helpful if you are receiving many duplicate errors. Note that Sentry will only compare stack traces and fingerprints. This integration is enabled by default for Browser.

<PlatformContent includePath="configuration/dedupe" />

## Modifying System Integrations

To disable system integrations set `defaultIntegrations: false` when calling `init()`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Pluggable Integrations
description: "Learn more about pluggable integrations ExtraErrorData, CaptureConsole, Dedupe, Debug, Offline, RewriteFrames, and ReportingObserver, which are snippets of code that augment functionality for specific applications and/or frameworks."
description: "Learn more about pluggable integrations ExtraErrorData, CaptureConsole, Debug, Offline, RewriteFrames, and ReportingObserver, which are snippets of code that augment functionality for specific applications and/or frameworks."
redirect_from:
- /platforms/javascript/integrations/plugin/
- /platforms/javascript/pluggable-integrations/
Expand Down Expand Up @@ -34,14 +34,6 @@ This integration captures all `Console API` calls and redirects them to Sentry

<PlatformContent includePath="configuration/capture-console" />

### Dedupe

_Import name: `Sentry.Integrations.Dedupe`_

This integration deduplicates certain events; it can be helpful if you are receiving many duplicate errors. Be aware that Sentry will only compare stack traces and fingerprints.

<PlatformContent includePath="configuration/dedupe" />

### Debug

_Import name: `Sentry.Integrations.Debug`_
Expand Down