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,18 +9,18 @@ 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.
The `breadcrumbsIntegration` 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 (for example, you could say don't capture `console.log` calls as breadcrumbs) via the options below.

## Options

### `console`

_Type: `boolean`_

Log calls to `console.log`, `console.debug`, etc.
Log calls to `console.log`, `console.debug`, and so on.

### `dom`

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
@@ -0,0 +1,34 @@
---
title: Breadcrumbs
excerpt: ""
description: "Learn how Sentry wraps native APIs of Deno to capture breadcrumbs."
sidebar_order: 1
---

_Import name: `Sentry.breadcrumbsIntegration`_

This integration is enabled by default. You can also [modify default integrations](./../#modifying-default-integrations).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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


The `breadcrumbsIntegration` 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 (for example, you could say don't capture `console.log` calls as breadcrumbs) via the options below.

## Options

### `console`

_Type: `boolean`_

Log calls to `console.log`, `console.debug`, and so on.

### `fetch`

_Type: `boolean`_

Log HTTP requests done with the Fetch API.

### `sentry`

_Type: `boolean`_

Log whenever we send an event to the server.