Skip to content

Commit

Permalink
Specify data collected in HTTP client errors (#11055)
Browse files Browse the repository at this point in the history
* add additional informations what will be sent to sentry in the dart http integration

* rearranged text for better readability

* add date scrubbing info
  • Loading branch information
martinhaintz committed Sep 17, 2024
1 parent 315b460 commit 4ca7991
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/platforms/dart/integrations/http-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,26 @@ try {
}
```

When an error occurs, the following information is captured and sent to Sentry:

The marked elements (\*) are affected by the default enabled [server-side data scrubbing](https://docs.sentry.io/security-legal-pii/scrubbing/server-side-scrubbing/).
To implement client side data scrubbing, go to [client-side data scrubbing in Flutter](https://docs.sentry.io/platforms/flutter/data-management/sensitive-data/).

Request details:

- Method
- URL \*
- Headers \*
- Body \*
- Content length
- Duration

Response details:

- Headers \*
- Content length
- Status code

This is an opt-out feature. The following example shows how to disable it:


Expand Down

0 comments on commit 4ca7991

Please sign in to comment.