Skip to content

Commit 307694f

Browse files
authored
docs(limits): Update docs to match new size limits for events/attachments (#15395)
1 parent 3814d0e commit 307694f

File tree

24 files changed

+32
-32
lines changed

24 files changed

+32
-32
lines changed

develop-docs/sdk/data-model/envelopes.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,10 @@ SDKs should not rely on Envelope header authentication to retain backward compat
341341
Event ingestion imposes limits on the size and number of Items in Envelopes.
342342
These limits are subject to future change and defined currently as:
343343

344-
- *20MB* for a compressed envelope request
345-
- *100MB* for a full envelope after decompression
346-
- *100MB* for all attachments combined
347-
- *100MB* for each attachment item
344+
- *40MB* for a compressed envelope request
345+
- *200MB* for a full envelope after decompression
346+
- *200MB* for all attachments combined
347+
- *200MB* for each attachment item
348348
- *1MB* for event (errors and transactions), span, log, and metric (statsd, buckets, meta) items.
349349
- *100KB* for monitor check-in items
350350
- *50MB* for profile items

docs/concepts/data-management/size-limits.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following describes how Sentry treats size limits:
1313
- Events, attachments, and requests exceeding payload size limits are immediately dropped with a `413 Payload Too Large` error.
1414
- Sentry allows compressed content encoding, and applies separate limits before and after decompression.
1515
- Events that exceed 200KB compressed or 1MB decompressed will be rejected.
16-
- Minidump uploads that exceed 20MB compressed or 100MB decompressed (for all files combined) will also be rejected.
16+
- Minidump uploads that exceed 40MB compressed or 200MB decompressed (for all files combined) will also be rejected.
1717
- Event fields exceeding the individual size limits are trimmed and truncated afterwards.
1818
- The number of events rejected due to size limits is counted towards the _Dropped_ category in [usage stats](/product/stats/#usage-stats).
1919

docs/platforms/android/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Attachments live on the <PlatformLink to="/enriching-events/scopes/">Scope</Plat
5757

5858
<Alert>
5959

60-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
60+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
6161

6262
</Alert>
6363

docs/platforms/apple/common/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Adding attachments to crashes is currently not supported.
5959

6060
<Alert>
6161

62-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
62+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
6363

6464
</Alert>
6565

docs/platforms/dart/common/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Attachments live on the <PlatformLink to="/enriching-events/scopes/">Scope</Plat
5353

5454
<Alert>
5555

56-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
56+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
5757

5858
</Alert>
5959

docs/platforms/dart/guides/flutter/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Attachments live on the <PlatformLink to="/enriching-events/scopes/">Scope</Plat
4949

5050
<Alert>
5151

52-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
52+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
5353

5454
</Alert>
5555

docs/platforms/dotnet/common/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Attachments live on the <PlatformLink to="/enriching-events/scopes/">Scope</Plat
5959

6060
<Alert>
6161

62-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
62+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
6363

6464
</Alert>
6565

docs/platforms/go/common/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Sentry can enrich your events for further investigation by storing additional fi
1717

1818
<Alert>
1919

20-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
20+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
2121

2222
</Alert>
2323

docs/platforms/godot/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You can add attachments that will be sent with every event using <PlatformIdenti
5151

5252
<Alert>
5353

54-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
54+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
5555

5656
</Alert>
5757

docs/platforms/java/common/enriching-events/attachments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Attachments live on the <PlatformLink to="/enriching-events/scopes/">Scope</Plat
5555

5656
<Alert>
5757

58-
Sentry allows at most 20MB for a compressed request, and at most 100MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
58+
Sentry allows at most 40MB for a compressed request, and at most 200MB of uncompressed attachments per event, including the crash report file (if applicable). Uploads exceeding this size are rejected with HTTP error `413 Payload Too Large` and the data is dropped immediately. To add larger or more files, consider secondary storage options.
5959

6060
</Alert>
6161

0 commit comments

Comments
 (0)