Event Tracing for Windows (ETW) is a high-speed tracing facility provided by the Windows Operating System which was introduced in Windows 2000.

learn more… | top users | synonyms

0
votes
0answers
8 views

ETW link a “this” pointer instance to OpenTrace() / ProcessTrace() call backs

I am attempting to process ETW events either real time or from a log file using the XP/classic "style". From what I understand of the docs there is no reason why you can't have more than one ...
1
vote
0answers
21 views

ETW ProcessTrace() trying to reserve 1GB of memory on XP?

I'm currently writing an application that uses the NT Kernel Logger via the ETW trace functions. It consumes in real-time mode. It works fine on my Windows 7 test machine but on my XP VM I was getting ...
0
votes
0answers
18 views

Winsock tracing can't get verbose level events

while it's very easy to get info level tracing started with Windows-Winsock-AFD using: netsh trace start provider=Microsoft-Windows-Winsock-AFD TraceFile=my_ winsock_log3_trace.etl the file ...
1
vote
2answers
39 views

Why does implementing an interface on a subclass of EventSource throw an exception at runtime?

I'm trying to use Event Tracing for Windows (ETW) in my .NET application via the EventSource class that was included in .NET 4.5. I'm subclassing EventSource as MyEventSource and trying to implement ...
0
votes
1answer
42 views

Is there a log viewer application that can read log messages from Azure Table Storage?

Microsoft recently released Enterprise Library 6 which contains the new Semantic Logging Block. One of the options available with the Semantic Logging Block is the ability to write log messages to ...
1
vote
1answer
42 views

ETW File IO Monitoring on XP/2003

I've been investigating ETW for process/file/registry/network monitoring. It looks like it on Win7 it has everything I need. However, on XP it seems to be lacking the same level of detail. ...
1
vote
1answer
61 views

How does Procmon work on 64-bit Vista+?

I understand older Procmon and its predecessors (filemon, regmon etc) used virtual drivers to hook the kernel. However, Patchguard prevents SSDT hooking etc on 64-bit Vista+. It is my understanding ...
0
votes
1answer
99 views

Consuming an ETW kernel trace using C#

I am using Windows Server 2012 and trying to consume a kernel trace from ETW using C#. For example, I have a Data Collector Set entitled "LiveKernel" which has a "Windows Kernel Trace" provider ...
1
vote
2answers
39 views

ETW provider for “Window in Focus” graph in Windows Performance Analyser

Windows Performance Analyser has a graph called "Window in Focus". What provider/trace flag should I specify in xperf command line to get such a graph?
0
votes
1answer
57 views

Garbage Collection ETW Events. Where do I find 'event data'

In the following msdn link, there is 'event data' listed like Count, Depth, Reason .. http://msdn.microsoft.com/en-us/library/ff356162%28v=vs.100%29.aspx#gcstart_v1_event According to this link, I ...
4
votes
1answer
257 views

How do you view ETW events created by EventSource using Windows Performance Analyzer?

I would like to fire ETW events using EventSource and view them with Windows Performance Analyzer. I have a basic EventSource: [EventSource(Name = "BasicEventSource")] public class ETWLogger : ...
0
votes
0answers
50 views

How to increase EventProvider payload size?

Is it possible to increase the payload size for user defined events in Appfabric ? To achieve custom events, I am using the EventProvider class defined in the System.Diagnostics.Eventing namespace ...
2
votes
2answers
354 views

ETW, .NET 4.5 - how to write to the event log?

I am trying to wrap my head around ETW and how to integrate t into a high Performance application. We all know the old dreatded EventLog with it's non structured (and thus not so optimal) API. Now ...
0
votes
1answer
105 views

Collection of MS SQL Server trace log

I need to write a program which can collect SQL Server trace logs from C code. There seem to be a couple methods to do this: Using the most common SQL trace method where trace files are mapped to ...
0
votes
1answer
249 views

C# - Subscribing to a ETW event channel?

I can use C#'s EventLogReader to retrieve all of the ETW events logged within a particular operational channel, using code similar to the example on this page: ...
0
votes
1answer
209 views

Channel Names for ETW Providers

I'm trying to get my Event Tracing for Windows (ETW) provider manifest to register the proper channel names. When I use the manifest (included below) I get the following results. However, when I ...
0
votes
0answers
117 views

Using ETW to print time stamp on context switch

I am using the following code that I found on Microsoft's website. It compiles successfully and outputs a log file, as it's supposed to: #include "stdafx.h" #define INITGUID // Include this ...
0
votes
2answers
83 views

NT Kernel Logger Session Log Not Being Created

I am trying to compile the following code I got from one of Microsoft's websites (original): #include "stdafx.h" #define INITGUID // Include this #define to use SystemTraceControlGuid in ...
0
votes
1answer
81 views

Viewing WF trace logs

We're encountering "silent" aborts when Windows Workflows (hosted in IIS) are persisted using SqlWorkflowInstanceStore. According to http://support.microsoft.com/kb/2022538 : If the service is ...
4
votes
1answer
245 views

Tracing to multiple ETW providers using WPP

I'm trying to use "Event Tracing for Windows" through WPP instumentation. Per documentation in Getting Started with Software Tracing in Windows Drivers it is possible to issue traces to multiple ...
3
votes
2answers
283 views

Viewing event data with XPerf?

I'm experimenting with using XPerf to instrument an application for performance analysis. My goal is to log start/stop events within my C# application and analyse certain kernel metrics between these ...
0
votes
1answer
73 views

How to perform MSMQ Trace

I'm looking for a way to trace MSMQ activity (API calls, or something similar) I saw several references mentioning ETW tracing but they weren't very clear or complete. Is there a simple tutorial ...
3
votes
1answer
412 views

Windows File System Filter Driver

I am trying to create a small file system filter driver for testing/demonstrating how to track the impact that filter drivers have on I/O performance using ETW in Windows Server 2008 R2. I've ...
0
votes
1answer
467 views

ETW custom Controller and Consumer (Provider using .net 4.5 EventSource)

I've been trying to work with ETW in .net 4.5. I have a small sample application which uses EventSource to write messages, however, I'm struggling to understand how to create my own ETW controller and ...
0
votes
1answer
161 views

Why isn't my Event Trace for Windows working?

I'm trying to figure out how to use Event Tracing for Windows... but I'm failing. Why does this code give me the error code ERROR_WMI_INSTANCE_NOT_FOUND? #include <stdio.h> #include ...
0
votes
1answer
112 views

ETW Tracing in a Driver — post-procedure

I have ETW tracing in a driver; the manifest file is created properly, the resources are all compiled in, etc. On the target machine, I run this command as administrator: wevtutil im ...
1
vote
0answers
160 views

Can ETW (event tracing for windows) be used to gather also memory statistics?

Is it possible using ETW to also get memory statistics of all the processes and the system ? With memory statistics I mean : e.g. Commited bytes, private bytes,paged pool,working set,... I cannot ...
5
votes
1answer
478 views

How do I get the address to kernel modules nt and win32k?

I need to know the base addresses where nt and win32k are loaded. I can find out this information by booting the system with kernel debugging enabled, start a kernel debug session, and run the ...
0
votes
1answer
191 views

In Windows kernel syscall traces, what are these mystery addresses?

I am using Event Tracing for Windows (ETW) to do kernel tracing of syscalls in Windows Server 2008 R2. I am running: logman start "NT Kernel Logger" -p "Windows Kernel Trace" ...
1
vote
1answer
164 views

How to force Event Trace Session to flush data more often?

I have a driver that writes alot of trace logs using WPP. I have configured an AutoLogger registry key entry to write the events to an .etl file. The logging session is started successfully and the ...
0
votes
2answers
327 views

use WPP from user mode application

I try to use WPP under user mode, managed to successfully use it in VS10, Release target by adding to the proj file: ...
1
vote
0answers
147 views

ETW PID accuracy when coming from a kernel provider such as NDIS

I've been playing around with Event Tracing for Windows events, the networking events, NDIS-PacketCapture and TCPIP in particular. Each ETW message has the PID field and I'm trying to figure out the ...
4
votes
1answer
232 views

When inserting log events the TimeCreated field is not accurate enough

I'm trying to do application logging to the windows event log in c# with .net framework 4, but when I insert the log entries the TimeCreated field (Event viewer -> Windows Logs -> Application -> -> ...
6
votes
2answers
906 views

Why use ETW over EventLog and vice versa?

Why should I use Event Tracing for Windows (ETW) over the standard .NET EventLog class, and vice versa? Does knowing that we'll be using quite a few performance counters impact the decision? What I ...
2
votes
2answers
1k views

How to consume real-time ETW events from the Microsoft-Windows-NDIS-PacketCapture provider?

The larger question is how to consume real-time ETW network stack events in general but I'm particularly interested in the Microsoft-Windows-NDIS-PacketCapture provider. All other network stack ...
0
votes
3answers
179 views

Performance and Monitoring tools for .NET

What are the different ways to identify the monitor and diagonsis of Windows/Web applications performance(I need tools/applications provided by Microsoft, not third party tools). Thanks in advance!
3
votes
1answer
171 views

EnumerateTraceGuids returns “The parameter is incorrect” (87)

i am trying to call the Windows API function EnumerateTraceGuids: ULONG EnumerateTraceGuids( __inout PTRACE_GUID_PROPERTIES *GuidPropertiesArray, __in ULONG PropertyArrayCount, __out ...
0
votes
2answers
294 views

Definition of ETW macros DoTraceMessage, WPP_CLEANUP, WPP_INIT_TRACING?

When using the Windows software trace preprocessor (WPP) component of Event Tracing for Windows (ETW), you must include a file that contains 3 macros: WPP_INIT_TRACING macro activates software ...
2
votes
2answers
687 views

WARNING -Provider resources not accessible running wevtutil

I need help solving the "Provider '' resources not accessible when trying to create a windows event provider. I create my manifest file with the ManGen utility, and name my '.exe' file as my message ...
2
votes
0answers
115 views

Consuming ETW events into a socket/named pipe

I have an application which creates ETW events. So far, I consumed its events using the real-time logger and the file logger. I was wondering - Is it possible to consume the event into an open ...
4
votes
2answers
329 views

Windows ETW: Kernel consumer receives no EventCallback or BufferCallback events

i am trying to listen to ETW kernel events. Step 1: Call OpenTrace, specifying the EventCallback and optional BufferCallback functions that will be called during my call to ProcessTrace: var ...
1
vote
2answers
379 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 ...
0
votes
3answers
237 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
653 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 ...
2
votes
3answers
461 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
620 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 ...
9
votes
1answer
655 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" ...
1
vote
0answers
259 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
182 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
109 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 2