mirror of
https://github.com/jlfwong/speedscope.git
synced 2024-11-22 22:14:25 +03:00
Update README.md with info about recursion collapsing and table view
This commit is contained in:
parent
d659eb0159
commit
17d48e753a
@ -61,6 +61,10 @@ In the "Time Order" view (the default), the stacks are ordered left-to-right in
|
||||
|
||||
In the "Left Heavy" view, identical stacks are grouped together, regardless of whether they were recorded sequentially. Then, the stacks are sorted so that the heaviest stack for each parent is on the left -- hence "left heavy". This view is useful for understanding where all the time is going in situations where there are hundreds or thousands of function calls interleaved between other call stacks.
|
||||
|
||||
### 📒Table View
|
||||
|
||||
In this "Table View", you can find a list of all functions an their associated times. You can sort by self time or total time.
|
||||
|
||||
## Navigation
|
||||
|
||||
Once a profile has loaded, the main view is split into two: the top area is the "minimap", and the bottom area is the "stack view".
|
||||
@ -85,3 +89,5 @@ Once a profile has loaded, the main view is split into two: the top area is the
|
||||
* `w`/`a`/`s`/`d` or arrow keys: pan around the profile
|
||||
* `1`: Switch to the "Time Order" view
|
||||
* `2`: Switch to the "Left Heavy" view
|
||||
* `3`: Switch to the table view
|
||||
* `r`: Collapse recursion in the flamegraphs
|
||||
|
Loading…
Reference in New Issue
Block a user