0

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?

Naresh Kumar
  • 277
  • 4
  • 18

1 Answers1

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.

fadden
  • 51,356
  • 5
  • 116
  • 166