Windows Performance Toolkit (WPT)Included in the Windows ADK, the Windows Performance Toolkit (WPT) contains performance analysis tools that are useful to a broad audience, including general application developers, driver developers, hardware manufacturers, and system builders. These tools are designed for measuring and analyzing system and application performance on Windows 8. |
What Tools Do I Get?The Windows Performance Toolkit is installed as part of the Windows ADK or Windows SDK. WPT contains the following tools:
|
How Do These Tools Fit Together?The tools use a trace capture and analysis model that follows this general flow:
| What Makes These Tools Possible?The Windows Performance Toolkit is built on top of the Event Tracing for Windows (ETW) infrastructure. ETW enables Windows and applications to efficiently generate events, which can be enabled and disabled at any time without requiring system or process restarts. ETW collects requested kernel events and saves them to one or more files referred to as trace files or traces. These kernel events provide extensive details about the operation of the system. Some of the most important and useful kernel events available for capture and analysis are context switches, interrupts, deferred procedure calls, process and thread creation and destruction, disk I/Os, hard faults, processor P-State transitions, and registry operations, though there are many others. One of the great features of ETW, supported in WPT, is the support of symbol decoding, sample profiling, and capture of call stacks on kernel events. These features provide very rich and detailed views into the system operation. WPT also supports automated perf testing. |