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

ref(profiling): add note for profiles stack trace rules #11852

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 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
16 changes: 16 additions & 0 deletions docs/concepts/data-management/event-grouping/stack-trace-rules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ description: "Learn how to use stack trace rules to group incoming events based

<Include name="only-error-issues-note.mdx" />

<Note>
A subset of stack trace rules, when defined, will also be applied to incoming profiles in order to improve the frames classification (in-app vs system).

More specifically, only the rules with any of these matchers and actions (below) will be applied to profiles.

Matchers allowed:
* `stack.abs_path`
* `stack.module`
* `stack.function`
* `stack.package`

Actions allowed:
* `+app`
* `-app`
</Note>

If you use stack traces for grouping, the stack trace rules (previously known as _grouping enhancements_) influence the data that's fed into the grouping algorithm. These rules can be configured on a per-project basis in **[Project] > Settings > Issue Grouping > Stack Trace Rules**.

Each line is a single rule; one or multiple match expressions are followed by one or multiple actions to be executed when all expressions match. All rules are executed from top to bottom on all frames in the stack trace.
viglia marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading