Tagged Questions
Event Tracing for Windows (ETW) is a high-speed tracing facility provided by the Windows Operating System which was introduced in Windows 2000.
8
votes
3answers
518 views
What exactly are new ETW features in CLR 4.0?
My colleague mentioned that there are some major improvements in CLR 4.0 related to Event Tracing for Windows but I couldn't find details of what exactly is new. There are few blog posts that mention ...
6
votes
1answer
80 views
.NET Tracing: What is the “Default” listener?
Every example of tracing in .NET people remove the "Default" listener:
<configuration>
<system.diagnostics>
<sources>
<source name="TraceSourceApp" ...
4
votes
1answer
402 views
Performance counter vs ETW
Are performance counters part of ETW? If not what is the difference betweent the two
4
votes
5answers
2k views
Consuming “Event Tracing for Windows” events
An answer to this question has led me to look into using "Event Tracing for Windows" for our tracing needs. I have come across NTrace, which seems to be a good way to produce ETW events from C# code ...
3
votes
1answer
142 views
Ellipsis and va_args trick needed
TraceMessage is an WinAPI function with variable number of arguments. It is a tracing function, with a notation similar to printf, which generates a trace message in Windows tracing. The weird part ...
3
votes
2answers
433 views
How do I read boot time events on Windows 7?
I am trying to use the ETW functions without success to read the file
C:\Windows\System32\winevt\Logs\Microsoft-Windows-Diagnostics-Performance%4Operational.evtx in order to capture boot time events.
...
2
votes
3answers
123 views
Optimizing Stack-Walking performance
Currently i use the dbghelp library to walk through the stack of some process' thread (using GetThreadContext() and StackWalk64()) and collect only the return addresses each frame contains.
However, ...
2
votes
1answer
66 views
Which API does Windows Resource Monitor use?
Windows Resource Monitor displays (among other things) which files on disk are currently accessed by which processes. And it does that in realtime. How?
I know that it probably uses ETW and that I ...
2
votes
1answer
289 views
Tracing windows API calls
I am currently working on a tool in .NET/Python that monitors certain events on a system, like writing specific registry keys or creating files with a special name.
I evaluated many possibilities, ...
2
votes
1answer
494 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
2answers
635 views
ETW tracking from .net, user mode and driver
We have an application that parts of it are in .net, c++ usermode and C++ drivers. The application is divided into several executables that run on demand and communication with each other using ...
2
votes
1answer
886 views
How to use ETW from a C++ windows client
I'm researching Event Tracing for Windows (ETW) to allow a user-mode windows client to write out tracing information. The existing documentation is, to put it lightly, insanely incomplete. What would ...
2
votes
3answers
469 views
ASP.NET - Can I write my own messages to ETW?
With the ASP.NET Events ETW (Event Tracing for Windows) provider, can I write custom messages to the trace from an ASP.NET page?
2
votes
1answer
379 views
ETW - Best Fix/Class-Library for Messy Interface?
By ETW I mean "Event Tracing for Windows".
According to my experimenting one virtue is that while by-design it occasionally fails to record events in Very-Busy conditions it otherwise Just Works, as ...
1
vote
2answers
23 views
Windows ETW: StartTrace failing with error 87 (ERROR_INVALID_PARAMETER)
i'm calling the Event Tracing for Windows StartTrace function:
StartTrace(sessionHandle, KERNEL_LOGGER_NAME, sessionProperties);
It is failing with error code 87 (ERROR_INVALID_PARAMETER). The MSDN ...
1
vote
0answers
48 views
Task Category for custom ETW events showing as number instead of name in Event Viewer
I am implementing logging in our application using ETW.
I used ecmangen.exe to create the manifest with a set of custom events, templates, tasks and keywords.
I used mc.exe to compile and ...
1
vote
1answer
42 views
Where is “Applications and Services Logs” on Win2k3 when using ETWTrackingParticipant for WF?
How do you view the ETW (Event Tracing for Windows) data when using ETWTrackingParticipant in WF 4 hosted on a Win2k3 server? For Windows 7 or Server 2k8, you can find it under Event ...
1
vote
1answer
37 views
How to access the ASP.NET / IIS ContextId
I've seen way too many times in my event logs this "ContextId" for a given ASP.NET request. I've recently started looking into ETW events that are pushed out by ASP.NET, and want to re-use this ...
1
vote
1answer
67 views
BizTalk instrumentation and ETW events payload
I am using the BizTalk Instrumentation Best Practices to add custom traces to the already available BizTalk components ETW providers. I also use the BizTalk CAT Instrumentation Framework Controller to ...
1
vote
0answers
127 views
Create Custom Log in Event Viewer with C++
I want to be able to create a custom log in event viewer (i.e. to create a custom node under "Application and Services Logs" in windows event viewer)
It is an easy task, if you use ...
1
vote
1answer
106 views
Event based testing for android
I'm using robotium for testing and I'm running into a bunch of timing issues that are making it difficult for me to know when an activity (or view) is done loading. As a result the tests I'm writing ...
1
vote
6answers
230 views
Programatically read program's page fault count on Windows
I'd like to my Windows C++ program to be able to read the number of hard page faults it has caused. The program isn't running as administrator. Edited to add: To be clear, I'm not as interested in ...
1
vote
2answers
323 views
C++ Event Tracing for Windows (ETW) wrapper
I have been investigating Event Tracing for Windows (ETW) for use within existing backend/server applications.
MSDN and other sources have sold the power of the framework and its integration with ...
1
vote
1answer
222 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
603 views
Flexible trace viewer (for etl files and runtime traces)
I'm looking for a trace viewer which will allow me to view ETL (Event Tracing for Windows) traces (created using WPP). I did found some ETL file viewers, but they don't support looking at traces at ...
1
vote
0answers
146 views
No support for multi-line MACROs during WPP tracing
I'm adding tracing to a user-mode application based on "Event Tracing for Windows" (ETW) using WPP (a pre-processor) and visual studio compiler.
This MSDN content explains how convert existing macros ...
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 ...
0
votes
1answer
27 views
Detect when ETW drops events
How can I determine if an ETW session is dropping events?
If it is dropping events, how can I configure the tracing session so that events are not dropped?
I've written a custom ETW provider to help ...
0
votes
1answer
55 views
Get TaskName from TaskScheduler Event Log
I'm trying to access the information available in the "Details" tab in Event Viewer.
I've realized the TaskScheduler events aren't available via the System.Diagnostics.EventLog, but instead via ...
0
votes
0answers
166 views
Full end to end tracing with ASP.Net, WCF & ETW
I have implemented End-to-end tracing between my MVC 3.0 client application and my WCF servers by emitting user-code traces and managing the activity ids from the client all the way to the server. I ...
0
votes
0answers
81 views
app fabric local cache tracing with ETW
We have a problem that after some time at production, the client of the app fabric caching work very slow. since we work with local cache we thought that something wrong there. After i examined the ...
0
votes
1answer
72 views
Monitor SELECT statements with ETW and EVENT SESSION
I am currently working with ETW on SQL Server 2008 to monitor (and eventually log) SQL statement execution. The events that I am looking to monitor are stored proc execution, INSERT, UPDATE, DELETE ...
0
votes
0answers
30 views
Etw kernel consume events
I am wondering if it is at all possible to receive etw events (vista+) using kernel code? I saw an example using user-mode functions, but I don't see any examples using kernel-mode functions. I ...
0
votes
1answer
85 views
Windows - see active ETW sessions so that I can close one of them
I am working with Event Tracing for Windows API, and from time to time, I run my application and it does not manage to close the ETW trace controller session after opening it.
Basically I do ...
0
votes
1answer
68 views
Can using server-side scripting delimiters (<% %>) cause compilations during runtime?
I am occasionally getting "Application compilation is starting." event in my Event Log and I can't identify what's causing it. I think I may try this - ...
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
1answer
97 views
Is ETW and/or performance counters supported in Windows Phone 7?
Windows Mobile upto 6.5 supported event tracing using CeLog, is there an equivalent of it on Windows Phone 7?
0
votes
1answer
98 views
Can you suggerst some good ETW readers?
I'm currently using Microsoft Network Monitor to parse thru debug event traces. It is not so bad tool, but not very good also. Do You maybe know some better solutions?
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
0answers
108 views
Listening to ETW (Windows) events with Javascript
Alright, this is a pretty strange and specific question: How can I listen to windows ETW events through Javascript?
The only way I can think of is creating a event listener COM library, then loading ...
0
votes
2answers
360 views
Event tracing using WPP from user mode, native application using Visual Studio
I'm looking for an example of utilizing "Event Tracing for Windows" (ETW) using WPP (a pre-processor) for applications developed in the Visual Studio environment.
Whilst MSDN documentation promise ...
0
votes
2answers
120 views
ASP.NET application slows down under load
I have an ASP.NET application. When I do some load testing, the throughput drops down quite a bit and application performs very slow. I have heard that ETW could be used to trace through the ...
0
votes
1answer
547 views
Strange threads in application in Win7 WOW64
We are observing 4-6 threads on Windows 7 x64 in the application which have 3 threads and behaves normally on any Windows (either 32 or 64 bit) prior Windows 7.
Process Explorer shows the following ...
0
votes
1answer
1k views
Windows ETL Trace File Format?
I have a written an ETW provider which is used by my system to log opaque blobs of binary data using the TraceEvent API function. My system is essentially a high throughput event processing system and ...