Skip to content

Commit 3daab70

Browse files
tustanivskylizokm
andauthored
Add screenshot feature description for Unreal Engine (#11042)
* Add screenshot feature description for Unreal Engine * Update screenshot * Update docs/platforms/unreal/enriching-events/screenshots/index.mdx Co-authored-by: Liza Mock <[email protected]> * Update platform-includes/enriching-events/attach-screenshots/unreal.mdx Co-authored-by: Liza Mock <[email protected]> * Update platform-includes/enriching-events/attach-screenshots/unreal.mdx Co-authored-by: Liza Mock <[email protected]> * Update platform-includes/enriching-events/attach-screenshots/unreal.mdx Co-authored-by: Liza Mock <[email protected]> * Update platform-includes/enriching-events/attach-screenshots/unreal.mdx --------- Co-authored-by: Liza Mock <[email protected]>
1 parent c3f7a15 commit 3daab70

File tree

6 files changed

+57
-0
lines changed

6 files changed

+57
-0
lines changed

docs/platforms/unreal/configuration/options.mdx

+7
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ Grouping in Sentry is different for events with stack traces and without. As a r
6767

6868
</ConfigKey>
6969

70+
<ConfigKey name="attach-screenshot">
71+
72+
Takes a screenshot of the application when an error happens and includes it as an attachment.
73+
Learn more about enriching events with screenshots in our <PlatformLink to="/enriching-events/screenshots/">Screenshots documentation</PlatformLink>.
74+
75+
</ConfigKey>
76+
7077
## Hooks
7178

7279
These options can be used to hook the SDK in various ways to customize the reporting of events.
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: "Screenshots"
3+
description: "Learn more about how to set up Sentry to take screenshots when an error occurs. The screenshot will be paired with the original event, giving you additional insight into issues."
4+
---
5+
6+
Sentry makes it possible to automatically take a screenshot and include it as an <PlatformLink to="/enriching-events/attachments/">attachment</PlatformLink> when a user experiences an error, an exception or a crash.
7+
8+
This feature is only available for SDKs with a user interface, like the ones for mobile and desktop applications. It's also limited by whether taking a screenshot is possible or not. For example, in some environments, like native iOS, taking a screenshot requires the UI thread, which often isn't available in the event of a crash. Another example where a screenshot might not be available is when the event happens before the screen starts to load. So inherently, this feature is a best effort solution.
9+
10+
## Enabling Screenshots
11+
12+
Because screenshots may contain <PlatformLink to="/data-management/sensitive-data/">PII</PlatformLink>, they are an opt-in feature. You can enable screenshots as shown below:
13+
14+
<PlatformContent includePath="enriching-events/attach-screenshots" />
15+
16+
## Viewing Screenshots
17+
18+
Once you've clicked on the event ID of a specific issue, you'll be able to see an overview of all the attachments as well as associated events in the "Attachments" tab.
19+
20+
![Screenshots List Example](./img/screenshot-list-example.png)

docs/product/issues/issue-details/index.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ Sentry provides the ability to take a screenshot and include it as an attachment
131131
- [JavaScript Electron](/platforms/javascript/guides/electron/enriching-events/screenshots/)
132132
- [React Native](/platforms/react-native/enriching-events/screenshots/)
133133
- [Unity](/platforms/unity/enriching-events/screenshots/)
134+
- [Unreal Engine](/platforms/unreal/enriching-events/screenshots/)
134135

135136
## Contexts
136137

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Using the editor menu in **Project Settings > Plugins > Sentry**:
2+
3+
![Options Screenshot Configuration](./img/attach-screenshot-unreal-editor.png)
4+
5+
Or, like so, if you're [configuring things programatically](/platforms/unreal/configuration/options/):
6+
7+
```cpp
8+
USentrySettings* Settings = FSentryModule::Get().GetSettings();
9+
Settings->AttachScreenshot = true;
10+
```
11+
12+
<Note>
13+
14+
Currently, this feature is supported for Windows and Linux only.
15+
16+
</Note>
17+
18+
## Screenshot Capture Mechanism
19+
20+
Since the Unreal Engine SDK consists of multiple SDKs, the specific mechanism with which a screenshot is captured will vary depending on where the error originated.
21+
22+
- On Windows/Linux, errors from within your game will be captured using the Unreal Engine API. This means that screenshots will only contain what's visible within your game. Any overlays on top of your game won't be visible.
23+
- On Apple/Android, screenshots will be captured using platform APIs. If you're using a native plugin to display an overlay and an error occurs, the SDK will try to capture a screenshot that contains the overlay.
24+
25+
<Note>
26+
27+
**Screenshots may contain PII.** For example, if your game has a registration form and an error occurs while the form is being displayed.
28+
29+
</Note>

0 commit comments

Comments
 (0)