Complexity Of ETW Leaves A Beginner Lost
When experimenting with something new in programming, it's always useful to step through the code in a debugger the first time to see what it does. An unfortunate side effect is far slower than normal execution speed, which interferes with timing-sensitive operations. An alternative is to have a logging mechanism that doesn't slow things down (as much) so we can read the logs afterwards to understand the sequence of events.
Windows has something called Event Tracing for Windows (ETW) that has evolved over the decades. This mechanism is implemented in the Windows kernel and offers dynamic control of what events to log. The mechanism itself was built to be lean, impacting system performance as little as possible while logging. The goal is that it is so fast and efficient that it barely affects timing-sensitive operations. Because one of the primary purposes of ETW is to diagnose system performance issues, and obviously it can't be useful it if running ETW itself causes severe slowdowns.
ETW infrastructure is exposed to Universal Windows Platform applications via the Windows.Foundation.Diagnostics
namespace, with utility classes that sounded simple enough at first glance: we create a logging session, we establish one or more channels within that session, and we log individual activities to a channel.
Trying to see how it works, though, can be overwhelming to the beginner. All I wanted is a timestamp and a text message, and optionally an indicator of importance of the message. The timestamp is automatic in ETW. The text message can be done with LogEvent
, and I can pass in a LoggingLevel
to signify if it is verbose chatter, informative message, warning, error, or a critical event.
In the UWP sample library there is a logging sample application showcasing use of these logging APIs. The source code looks straightforward, and I was able to compile and run it. The problem came when trying to read this log: as part of its low-overhead goal and powerful complexity, the output of ETW is not a simple log file I can browse through. It is a task-specific ETL file format that requires its own applications to read. Such tools are part of the Windows Performance Toolkit, but fortunately I didn't have to download and install the whole thing. The Windows Performance Analyzer can be installed by itself from the Windows store.
I opened up the ETL file generated by the sample app and... got no further. I could get a timeline of the application, and I can unfold a long list of events. But while I could get a timestamp for each event, I can't figure out how to retrieve messages. The sample application called LogEvent
with a chunk of "Lorem ipsum" text, and I could not figure out how to retrieve it.
Long term I would love to know how to leverage the ETW infrastructure for my own application development and diagnosis. But after spending too much time unable to perform a very basic logging task, I shelved ETW for later and wrote my own simple logger that outputs to a plain text file.