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

fix: Remove grouping breakdown page #7440

Merged
merged 3 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/docs/product/accounts/early-adopter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ Limitations:

- [Issue Status](https://sentry-docs-git-update-beta-test-archiving.sentry.dev/product/issues/states-triage/) tags, including [Escalating Issues](https://sentry-docs-git-update-beta-test-archiving.sentry.dev/product/issues/states-triage/escalating-issues/)
- [Priority Sort](/product/issues#issue-sort) algorithm improvements
- [Grouping Breakdown](/product/data-management-settings/event-grouping/grouping-breakdown/)
- [Issue Reprocessing](/product/issues/reprocessing/)
- [Span Summary](/product/performance/transaction-summary/#span-summary)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ This grouping usually works well, but two specific situations can throw it off:
1. Minimized JavaScript source code will destroy the grouping in detrimental ways. To avoid this, ensure that Sentry can access your [Source Maps](/platforms/javascript/sourcemaps/).
2. Modifying your stack trace by introducing a new level through decorators changes your stack trace, so the grouping will also change. To handle this, many SDKs support hiding irrelevant stack trace frames. For example, the Python SDK will skip all stack frames with a local variable called `__traceback_hide__` set to _True_.

You can also see what events would group together if a larger or smaller amount of stack trace frames were taken into account using the updated [Grouping Breakdown](/product/data-management-settings/event-grouping/grouping-breakdown/) (Early Adopters only).

### Grouping By Exception

If the stack trace is not available, but exception information is, then the grouping will consider the `type` and `value` of the exception if both pieces of data are present on the event. This grouping is a lot less reliable because of changing error messages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ category:telemetry -group

#### Built-in Categories

Frame categorization is heavily used by our newest grouping algorithm, so [if you have it enabled](/product/data-management-settings/event-grouping/grouping-breakdown#enable-the-grouping-breakdown-beta), you can match on a variety of categories, including:
Frame categorization is heavily used by our newest grouping algorithm. You can match on a variety of categories, including:

- `system` - detected system libraries
- `std` - detected standard libraries
Expand Down