You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specify data collected in HTTP client errors (#11055)
* add additional informations what will be sent to sentry in the dart http integration
* rearranged text for better readability
* add date scrubbing info
Copy file name to clipboardExpand all lines: docs/platforms/dart/integrations/http-integration.mdx
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,26 @@ try {
52
52
}
53
53
```
54
54
55
+
When an error occurs, the following information is captured and sent to Sentry:
56
+
57
+
The marked elements (\*) are affected by the default enabled [server-side data scrubbing](https://docs.sentry.io/security-legal-pii/scrubbing/server-side-scrubbing/).
58
+
To implement client side data scrubbing, go to [client-side data scrubbing in Flutter](https://docs.sentry.io/platforms/flutter/data-management/sensitive-data/).
59
+
60
+
Request details:
61
+
62
+
- Method
63
+
- URL \*
64
+
- Headers \*
65
+
- Body \*
66
+
- Content length
67
+
- Duration
68
+
69
+
Response details:
70
+
71
+
- Headers \*
72
+
- Content length
73
+
- Status code
74
+
55
75
This is an opt-out feature. The following example shows how to disable it:
0 commit comments