8000 [RUM][RWOL] Fix explanation on the error-based retention filters by MaelNamNam · Pull Request #28902 · DataDog/documentation · GitHub
[go: up one dir, main page]

Skip to content

[RUM][RWOL] Fix explanation on the error-based retention filters #28902

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

Merged
merged 6 commits into from
Apr 23, 2025
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 @@ -48,7 +48,8 @@ Below we describe the set of default filters, suggested filters, and their typic
| Filter | Query Example | Description |
|--------|---------------|-------------|
| Sessions with replays | `@session.has_replay:true` | A default filter (enforced) to ensure the system does not discard any sessions with session replays available. |
| Sessions with errors | `@type:error @error.is_crash:true` | A default filter that can be applied to retain all web sessions with errors and mobile sessions with crashes. |
| Sessions with errors | `@type:error` | A default filter that can be applied to retain all sessions that contain at least 1 error. |
| Sessions with mobile crashes | `@type:error @error.is_crash:true` | A filter that can be applied to retain all sessions that ended with a crash. |
| Sessions | `@type:session` | A default filter, placed last in the list, to apply to all sessions, which allows you to retain or discard a percentage of them. |
| App versions | `@type:session version:v1.1.0-beta` | Filtering by app version (beta, alpha, or specific version) ensures all sessions from a particular build are saved for detailed analysis and troubleshooting. |
| Environments | `@type:session environment:stage` | When collecting sessions from various build types or environments, ensure you capture at least 100% of sessions from staging environments, while collecting a smaller percentage from dev/test environments. |
Expand Down
Loading
0