From 710aa19c0a4de42396b2b9b2455fd595218d370b Mon Sep 17 00:00:00 2001 From: Ivan Tustanivskyi Date: Wed, 29 Apr 2026 12:54:08 +0300 Subject: [PATCH 1/2] docs(unreal): Add `EnableLargeAttachments` option --- docs/platforms/unreal/configuration/options.mdx | 14 ++++++++++++++ .../unreal/enriching-events/attachments/index.mdx | 12 +++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/platforms/unreal/configuration/options.mdx b/docs/platforms/unreal/configuration/options.mdx index 121dc3d4a19ffa..744411e57b05a4 100644 --- a/docs/platforms/unreal/configuration/options.mdx +++ b/docs/platforms/unreal/configuration/options.mdx @@ -147,6 +147,20 @@ This option is turned off by default. + + +When enabled, attachments above an internal size threshold are uploaded out-of-band via a separate request before the event is sent, instead of being embedded in the envelope. This lets attachments exceed the inline envelope size limits. When disabled, oversized attachments are rejected by Sentry. + +Learn more in the Attachments documentation. + + + +Currently supported on Windows, Linux, Mac (with native backend) and consoles. + + + + + When enabled, [Nsight Aftermath](https://developer.nvidia.com/nsight-aftermath) mini-dump file is automatically attached to GPU crash events captured. diff --git a/docs/platforms/unreal/enriching-events/attachments/index.mdx b/docs/platforms/unreal/enriching-events/attachments/index.mdx index 6d043fb52d14df..e5e21e562b0f35 100644 --- a/docs/platforms/unreal/enriching-events/attachments/index.mdx +++ b/docs/platforms/unreal/enriching-events/attachments/index.mdx @@ -94,7 +94,7 @@ The same result can be achieved by calling the corresponding function in bluepri -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. +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 send files that exceed these limits, enable [Large Attachments](#large-attachments) on supported platforms. @@ -133,3 +133,13 @@ Alternately, attachments also appear in the _Attachments_ tab on the **Issue Det The scale is bytes and the default is `20 MiB`. Please also check the [maximum attachment size of Relay](/product/relay/options/) to make sure your attachments don't get discarded there. + +## Large Attachments + +By default, all attachments are embedded inline in the event envelope, so they're subject to the [size limits](#uploading-attachments) above. To send larger files, enable the `EnableLargeAttachments` option in plugin settings — when enabled, attachments above an internal size threshold are uploaded out-of-band via a separate request and referenced from the envelope by location. + + + +Currently supported on Windows, Linux, Mac (with native backend) and consoles. + + From f3ef58709a418c65d8e37f555d491df8c695753a Mon Sep 17 00:00:00 2001 From: Ivan Tustanivskyi Date: Mon, 4 May 2026 16:36:56 +0300 Subject: [PATCH 2/2] Remove obsolete warning --- .../platforms/unreal/enriching-events/attachments/index.mdx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/platforms/unreal/enriching-events/attachments/index.mdx b/docs/platforms/unreal/enriching-events/attachments/index.mdx index e5e21e562b0f35..7ce4bd12e08d22 100644 --- a/docs/platforms/unreal/enriching-events/attachments/index.mdx +++ b/docs/platforms/unreal/enriching-events/attachments/index.mdx @@ -6,12 +6,6 @@ description: >- og_image: /og-images/platforms-unreal-enriching-events-attachments.png --- - - -This feature is supported for iOS and Android only. - - - Sentry can enrich your events for further investigation by storing additional files, such as config or log files, as attachments. ## Creating Attachments