Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
318 views

Diagnosing Cause of 100% CPU Usage by “System” Process

I have a Windows server application, implemented in C++ using the Win32 API, that does a lot of serial and TCP/IP communication. As it runs, CPU usage gradually increases, until it reaches 100%. ...
3
votes
1answer
227 views

How to locate idle time (and network IO time, etc.) in XPerf?

Let's say I have a contrived program: #include <Windows.h> void useless_function() { Sleep(5000); } void useful_function() { // ... do some work useless_function(); // ... do ...
2
votes
2answers
407 views

Problem installing WPT manifest using wevtutil

I'm trying to add performance counters and custom events to a piece of software, so that I can view these using Windows Performance Toolkit programs such as XPerf and GPUView. I am going to refrain, ...
2
votes
1answer
328 views

Are perfmon performance counters based on the same thing “under the hood” as the ETW events used by xperf?

I have recently been becoming acquainted with perfmon and with xperf. Perfmon uses performance counters and xperf uses ETW (event tracing for windows). Perfmon has objects that provide data, whereas ...
2
votes
1answer
495 views

Getting WPF ETW events using XPerf.exe

I cannot figure out the correct combination of command line switches and parameters to feed to XPerf.exe to get it to load the WPF ETW provider (Microsoft-Windows-WPF? ...
2
votes
1answer
787 views

How to perform Xperf callstack capture on 64b OS?

I have installed Xperf performance analyzer from Windows SDK and captured a trace as described in the documentation using following command: xperf -on SysProf -stackwalk profile Still, the stack ...
1
vote
1answer
97 views

Analyze Network events with xperf

I have written a small tcp-client/server-thing for testing the xperf-networkttrace capabilities. But as it seems I did do something wrong with xperf. When I use the Xperf kernel group NETWORK or ...
1
vote
1answer
223 views

List files accessed per-process with xperf?

With xperf I can generate a trace and get a "flat" listing of all files read like so: xperf -on FileIO+FILE_IO+FILE_IO_INIT+FILENAME -stackwalk FileRead+FileWrite+FileDelete xperf -start ...
1
vote
1answer
357 views

How do I trace a custom allocator using xperf's heap profiling tools?

xperf (part of Windows Performance Analysis Toolkit) is very helpful in tracking memory usage with its heap analysis. However, my app uses a custom allocator -- it grabs chunks via VirtualAlloc ...
1
vote
2answers
2k views

Getting the symbols with xperf

I read through the docs and used the commands outlined however for some reason I dont seem to be getting any symbols, just a series of "unknowns" in the function column of the summary table for ...
0
votes
0answers
43 views

xperf callstack tracing, specific to dlls

I'm running into some problems getting full call stacks with my xperf traces. This is on a Win7 64bit pc. At a higher level, I have an exe that loads several dlls, which also do the bulk of the ...
0
votes
2answers
54 views

Trouble getting xperfview to load symbols for DLL

I have been fighting tooth and nail with xperf to get symbols for a tool I'm profiling. My code that runs within the tool is split between the .exe and a .dll -- the important stuff to profile being ...
0
votes
1answer
123 views

How Xperf (ETW) measures driver load time?

I'm using Xperf to measure the load time of my WDF driver. By some reason the load time is rather big - up to 1 sec. Odd enough it stays so even when I remove all code from the driver. My question is ...
0
votes
3answers
199 views

What is Hard Faults in XPerf

I'm trying to profile a system with XPerf. And see that performance problems occurs when there is activity in HardFaults ! But what I cant figure out and find in google what are these Hard Faults ...
0
votes
1answer
244 views

XPerf and Classic ETW Providers

Is it possible to collection traces from classic ETW providers? Or is XPerf limited to manifest-based ones? I have a custom classic provider and was wondering if I could collect its event using XPerf. ...
0
votes
2answers
171 views

Windows Xperf diskio action does not show me a file that a program reads during the performance trace session

I run xperf in order to get trace info for a program when I run it. The program reads a file. It is a .NET program written in F#, the file is read here: System.IO.File.ReadAllLines("MyReadFile.txt") ...
0
votes
1answer
136 views

Creating a printable report showing statistics from Windows Performance Analyzer Xperf

This is a very simple question. I run Xperf and get all statistics about execution of programs, applications, and so on... Well, I would like to find a tool that enables me to create a printable ...
0
votes
1answer
83 views

XPerfViewer with the new Storport Provider?

Does anyone know of a way to parse out disk latency information from the new Storport provider with XPerfViewer (or any other tool)? I used the following article to capture a trace: ...
0
votes
1answer
280 views

Xperfview: What's the difference between CPU sampling and CPU Usage?

This question pertains to xperf and xperfview, utilities that are part of the Windows Performance Toolkit (in turn part of Windows SDK 7.1). Comparing two charts, "CPU sampling by thread" and "CPU ...
0
votes
1answer
335 views

XPerfView slow to load symbols

I am attempting to perform a stackwalk with Xperf, using a batch file similar to the one listed at http://stackoverflow.com/questions/597211/getting-the-symbols-with-xperf. I launch XperfView, ...
0
votes
2answers
695 views

xperf can't load my DLL's symbols

I'm trying to use xperf to profile my DLL, but it refuses to use my DLL's PDB file. Running xperf on the .etl with -symbols, I get: DBGHELP: mydll- private symbols & lines ...