-
Notifications
You must be signed in to change notification settings - Fork 35
Settings: Collapsed Stack Frames
When enabled long stack traces will reduced in pattern based group. This will reduce the length of a stack trace when there is a lot of activity within a specific group.
The minimum number of entries a stack trace should have before it will try to collapse groups.
Always skip this number of frames before collapsing. Often the first few lines are the most significant code.
If a group reached this length it will be collapsed, otherwise it will be shown in full. Note that the first, skipped, frames will not be included.
Each line defines a group pattern. These patterns are matched to the start of each line. The patterns are matched in order. The first pattern to match will be used to determine a group.
There is one special wildcard: *
. This wildcard matches anything up to the next period. What is matched be used to match the following lines.
For example, the pattern java.util.*.
will match any of the following lines:
java.util.regex.Pattern
java.util.concurrent.ConcurrentHashMap
java.util.logging.Logger
But they are not considered in the same group. Instead the following groups will be identified:
java.util.regex.
java.util.concurrent.
java.util.logging.