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 all commits
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 doesn't match my application" permalink>

There are a few cases where the replay playback won't match the look of your application. Below, are some common causes and solutions if you experience this.

### Missing elements from the replay

* You may be using unsupported and/or deprecated elements such as `<frame>` (not to be confused with `<iframe>`).
* The element may be 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 encounter this.

</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