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
Expand Up @@ -9,7 +9,7 @@ notSupported:

_Import name: `Sentry.breadcrumbsIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration wraps native APIs to capture breadcrumbs. By default, the Sentry SDK wraps all APIs.
You can opt-out of capturing breadcrumbs for specific parts of your application (e.g. do not capture `console.log` calls as breadcrumbs) via the options below.
Expand All @@ -34,7 +34,7 @@ When an object with a `serializeAttribute` key is provided, the Breadcrumbs inte

_Type: `boolean`_

Log HTTP requests done with the Fetch API
Log HTTP requests done with the Fetch API.

### `history`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notSupported:

_Import name: `Sentry.dedupeIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ sidebar_order: 1

_Import name: `Sentry.functionToStringIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration allows the SDK to provide original functions and method names, even when those functions or methods are wrapped by our error or breadcrumb handlers.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notSupported:

_Import name: `Sentry.globalHandlersIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration attaches global handlers to capture uncaught exceptions and unhandled rejections. It captures errors and unhandled promise rejections by default.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notSupported:

_Import name: `Sentry.httpContextIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration attaches HTTP request information, such as URL, user-agent, referrer, and other headers, to the event.
It allows us to correctly catalog and tag events with specific OS, browser, and version information.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_order: 1

_Import name: `Sentry.inboundFiltersIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration allows you to ignore specific errors based on the type,
message, or URLs in a given exception.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notSupported:

_Import name: `Sentry.linkedErrorsIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration allows you to configure linked errors. They’ll be recursively read up to a specified limit, then lookup will be performed by a specific key. By default, the Sentry SDK sets the limit to five and the key used is `"cause"`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ notSupported:

_Import name: `Sentry.browserApiErrorsIntegration`_

This integration is [enabled by default](./../#modifying-default-integrations).
This integration is enabled by default. If you'd like to modify your default integrations, read [this](./../#modifying-default-integrations).

This integration wraps native time and event APIs (`setTimeout`, `setInterval`, `requestAnimationFrame`, `addEventListener/removeEventListener`) in `try/catch` blocks to handle async exceptions.