I have a list of trace files and I need to analyze them. Is there any way to analyze them programmatically without using the tool traceview
?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
The dmtracedump
tool, used with the -o
flag, will parse the file and dump it to stdout in a line-oriented human-readable format. You can either parse this output or just clone the file parser from dmtracedump
. Sources here.