Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ff57cec
replay for mobile prod structure
bruno-garcia Jul 9, 2024
ab04d54
Update docs/product/explore/session-replay/web/index.mdx
jas-kas Jul 12, 2024
fab9949
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
d63c978
Update docs/product/explore/session-replay/web/index.mdx
jas-kas Jul 12, 2024
12b0156
Update docs/product/explore/session-replay/index.mdx
jas-kas Jul 12, 2024
6cfbc7e
Update docs/product/explore/session-replay/mobile/index.mdx
lizokm Jul 12, 2024
8638306
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
23cd78f
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
a3ed3fe
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
403e71b
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
244c392
Update docs/product/explore/session-replay/web/index.mdx
jas-kas Jul 12, 2024
fbd3aec
Update docs/product/explore/session-replay/web/index.mdx
jas-kas Jul 12, 2024
be5603c
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
3d9e2b3
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
70c1c97
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 12, 2024
0f8ebf2
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
50fe36a
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
da8ffa1
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
088fcad
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
238f535
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
9ffbe5f
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
b9d997b
Update docs/product/explore/session-replay/mobile/index.mdx
jas-kas Jul 15, 2024
8ad0a69
Merge branch 'master' into replay/mobile-product
bruno-garcia Jul 15, 2024
74adb3a
fix frontmatter
bruno-garcia Jul 15, 2024
66cb4de
console desc and min version
bruno-garcia Jul 15, 2024
5cc9b10
index for session replay product docs
bruno-garcia Jul 15, 2024
9039948
style
bruno-garcia Jul 15, 2024
8bdecc4
style
bruno-garcia Jul 15, 2024
24bd1fd
fix relative links
bruno-garcia Jul 15, 2024
1fa49fc
Update docs/product/explore/session-replay/mobile/index.mdx
bruno-garcia Jul 15, 2024
4b7bb3a
Update docs/product/explore/session-replay/mobile/index.mdx
bruno-garcia Jul 15, 2024
7a20cb0
Apply suggestions from code review
bruno-garcia Jul 15, 2024
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
Prev Previous commit
Next Next commit
Update docs/product/explore/session-replay/mobile/index.mdx
Co-authored-by: Liza Mock <[email protected]>
  • Loading branch information
jas-kas and lizokm authored Jul 12, 2024
commit a3ed3fe68edf5330be2a990dad89a9efd897f4ec
6 changes: 5 additions & 1 deletion docs/product/explore/session-replay/mobile/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ Replays help you see exactly how the user experience is impacted by errors. Beca

## What is Session Replay?

Session Replay for mobile works by taking snapshots of the view hierarchy as well as a screenshot within the same frame, at the rate of one per second. In order to redact anything potentially sensitive and preserve maximum user privacy, the view hierarchy is used to find the position of controls such as text boxes, images, labels, and buttons. Redaction is done by drawing a block over these controls, using the most predominant color of the control for the block. These screenshots are compressed into a video file representing a segment of the user’s session. All these small segments are streamed into Sentry with additional trace identifiers, breadcrumbs, and other useful debugging information to compose the full user session. The user session (i.e., replay) lasts until the user closes the app, the app crashes, the user puts the app in the background for over 30 seconds, or the session reaches 60 minutes in duration. The result is a video playback that can help you reproduce bugs in your mobile app, including hard-to-debug issues related to backend APIs and microservices.
Session Replay for mobile works by taking snapshots of the view hierarchy as well as a screenshot within the same frame, at the rate of one per second. These screenshots are then compressed into a video file representing a segment of the user’s session. All these small segments are then streamed into Sentry with additional trace identifiers, breadcrumbs, and other useful debugging information to compose the full user session.

The user session (replay) lasts until the user closes the app, the app crashes, the user puts the app in the background for over 30 seconds, or the session reaches 60 minutes in duration. The result is a video playback that can help you reproduce bugs in your mobile app, including hard-to-debug issues related to backend APIs and microservices.

To redact anything potentially sensitive and preserve maximum user privacy, the view hierarchy is used to find the position of controls such as text boxes, images, labels, and buttons. Redaction is done with a block that's drawn over these controls, using the most predominant color of the control.

## Replay Details

Expand Down