Event Tracing for Windows GUI
Posted
by
Ian Boyd
on Super User
See other posts from Super User
or by Ian Boyd
Published on 2011-02-18T00:31:01Z
Indexed on
2011/02/18
7:27 UTC
Read the original article
Hit count: 575
i want to view tracing events from the Event Tracing for Windows system.
As far as i can tell the only client program that exists for connecting to providers is a command line tool that comes with the Microsoft Windows Device Driver Development Kit (DDK), e.g.:
tracelog -start "NT Kernel Logger" -f krnl.etl -dpcisr -nodisk -nonet -b 1024 -min 4 -max 16 -ft 10 –UsePerfCounter
...
tracelog –stop
It then requires a separate command line tool to convert the generated log file into something usable, e.g.:
trcerpt krnl.etl -report isrdpc.xml
Has nobody come up with a Windows program (ala Performance Monitor, Process Monitor, Event Viewer) that lets me start tracing by pushing a "Go" button, let me see events, and i can stop it with a "Stop" button?
Is there GUI for Event Tracing for Windows?
© Super User or respective owner