3
votes
2answers
449 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
229 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 ...
4
votes
1answer
234 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
1k 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 ...
0
votes
1answer
671 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 ...
1
vote
1answer
194 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
0answers
347 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 ...
3
votes
2answers
934 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. ...