Application to parse profiling output
I'm profiling a .NET application and all I have is a CSV output similar to this:
name calls inclusive_time exclusive_time
=========================================================
main 1 88375485 88363071
len 1057 14060 14060
join 60 1635 1635
exists 573 447360 433872
find_vertical_lines 150 279889 138107
clean_text 162 119721 104242
Do you know any application which can take profiling information from a file开发者_开发百科 and display some typical profiler stats? I can format the information in different ways if required.
I know that I won't be able to do some operations like drill down the caller tree.
You should look at PerfConsole. It was designed as a lightweight, command-line oriented tool for analyzing Visual Studio Profiler reports (.vsp), but you can plug into its data model to benefit from its filtering and analysis.
The download comes with documentation that describes its data model as well as how to actually use the tool.
精彩评论