Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(replay): Add troubleshooting section for "Replay does not look correct" #11375

Merged
merged 4 commits into from
Sep 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ excerpt: ""
description: "Troubleshooting Session Replay-specific Issues"
---

<Expandable title="Replay does not look correct" permalink>
billyvg marked this conversation as resolved.
Show resolved Hide resolved

There are a few category of cases where the replay playback does not match how your application looks. Below are some common causes and what next steps are if you experience this.
billyvg marked this conversation as resolved.
Show resolved Hide resolved

### Missing elements from the replay

* Usage of unsupported and/or deprecated elements such as `<frame>` (not to be confused with `<iframe>`)
* Element is blocked by the [privacy configuration](/platforms/javascript/session-replay/privacy/#blocking) (by default, elements with the class name `sentry-block` or the attribute `data-sentry-block`)

### CSS is wrong or missing

* There may be edge cases with complex CSS selectors which break the styling. Please [file an issue on GitHub](https://github.com/getsentry/sentry-javascript/issues) if you enounter this.
billyvg marked this conversation as resolved.
Show resolved Hide resolved

</Expandable>

<Expandable title="My `canvas` elements aren't getting captured" permalink>

Canvas is supported in SDK versions >= `7.98.0`. Please see the <PlatformLink to="/session-replay/#canvas-recording">canvas setup documention</PlatformLink> to get started with canvas recordings.
Expand Down
Loading