Hi all,
I'm writing a tool/service to fold, filter, diff call stacks.
The purpose of the tool is to structure and get insight from call stacks. Usually I will have a file contains huge amount of call stacks and it is hard to process and get any clue from it. Thus I'm writing this tool
Currently, it support
- diff call stacks between two files and find the outlines.
- fold call stacks when there are duplicates in the call stacks.
- filter the call stacks thus only interested ones are output to the console.
The project is in GitHub - Celthi/calltrace, any review comments are appreciated! Thanks in advance.