Add a "Drop samples" dropdown to the stack settings toolbar
See original GitHub issueIt should provide an option to toggle samples that contain.
- Native stack
- JS-only stacks
- Idle stack
Idle stacks are currently not instrumented with pseudo stacks, so we’ll need to string sniff. The following function names should be filtered:
- Mac:
mach_msg_trap
- Windows:
NtWaitForAlertByThreadId
- Windows:
NtUserMsgWaitForMultipleObjectsEx
- todo
@mstange can you help me with filling these in ^
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
How to update a drop down list of a pull down button in the ...
I have added a drop down list dynamically to a pull down button in the Eclipse toolbar, by following the instructions: Programmatically add...
Read more >Adding drop-down menus to your navigation with folders
Use folders to create drop-down navigation menus (also known as nested pages or sub-menus) on your site. Each folder creates a single ...
Read more >pyqgis - Add extra item to drop down menu plugin. "Layers ...
You should create an action (QAction), and you can add this action to a menu. Look in the source code of any Python...
Read more >DropdownButton class - material library - Flutter - Dart API docs
A dropdown button lets the user select from a number of items. The button shows the currently selected item as well as an...
Read more >Exposed Drop-Down Menu in Android - GeeksforGeeks
Below is the sample GIF to give an idea of what we are going to build. Note that we are going to implement...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
NtWaitForAlertByThreadId and NtUserMsgWaitForMultipleObjectsEx are the 2 symbols I typically see at the bottom of idle stacks on Windows profiles.
I don’t know how we can discriminate such a synchronous wait. Maybe the stack actually looks different ?