PEVENT_RECORD_CALLBACK callback function (evntrace.h)

Consumers implement this callback to receive events from a trace processing session.

The PEVENT_RECORD_CALLBACK type defines a pointer to this callback function. EventRecordCallback is a placeholder for the application-defined function name.

Syntax

PEVENT_RECORD_CALLBACK PeventRecordCallback;

void PeventRecordCallback(
  [in] PEVENT_RECORD EventRecord
)
{...}

Parameters

[in] EventRecord

Pointer to an EVENT_RECORD structure that contains the event information.

Return value

None

Remarks

To specify the function that ETW calls to deliver events, set the EventRecordCallback, Context, and ProcessTraceMode members of the EVENT_TRACE_LOGFILE structure that you pass to the OpenTrace function.

  • Set EventRecordCallback to the address of your callback function.
  • Set Context to a value that should be included in the UserContext field of each EVENT_RECORD provided to your callback.
  • Set ProcessTraceMode to the flags to be used when processing the trace. To use EventRecordCallback, you must include PROCESS_TRACE_MODE_EVENT_RECORD in the ProcessTraceMode value.

Note

If your EventRecordCallback function is receiving garbled data from ProcessTrace, double-check the flags specified in the ProcessTraceMode field of the EVENT_TRACE_LOGFILE structure that was provided to OpenTrace. EVENT_TRACE_LOGFILE's EventCallback and EventRecordCallback fields are overlapping members of a union. If the ProcessTraceMode field includes the PROCESS_TRACE_MODE_EVENT_RECORD flag, ProcessTrace will invoke your callback using the EventRecordCallback function signature. Otherwise, ProcessTrace will invoke your callback using the EventCallback function signature.

After using OpenTrace to create the trace processing session, call the ProcessTrace function to begin receiving the events.

When ProcessTrace begins processing events from a trace, it may invoke your callback with one or more synthetic events that contain data about the trace (metadata) rather than data from logged events. These synthetic events have EventHeader.ProviderId set to EventTraceGuid and EventHeader.EventDescriptor.Opcode set based on the content of the synthetic event. For example, the first event from each trace file will be a synthetic event with Opcode 0 containing TRACE_LOGFILE_HEADER information.

All the other events you receive contain provider-specific event data. You use the EventHeader.ProviderId and EventHeader.EventDescriptor members of EVENT_RECORD to determine the type of event you received.

  • If the event comes from a well-known provider and you know the layout of the data, you can use your own system for decoding the events.
  • If the EventHeader.Flags field includes the EVENT_HEADER_FLAG_TRACE_MESSAGE flag, the event is a WPP message. If the appropriate decoding information (TMF or PDB file) is available, the event can be decoded using TdhGetProperty or TdhGetWppProperty.
  • Otherwise, the event may be a MOF-based, manifest-based, or TraceLogging event. If the appropriate decoding information is available, the event can be decoded using TdhGetEventInformation.
    • If the event uses MOF-based decoding, TdhGetEventInformation will look for event decoding information in the system's WMI data store.
    • If the event uses manifest-based decoding, TdhGetEventInformation will look for event decoding information in the system's registered manifests or in manifests or binaries loaded into the per-process decoding context by TdhLoadManifest or TdhLoadManifestFromBinary.
    • If the event uses TraceLogging-based decoding, TdhGetEventInformation will use decoding information from within the event.

In most cases, events will be delivered to your callback in the order in which they occurred (timestamp order). However, in certain circumstances, the events might not be delivered in their original order.

  • If the trace is using system time for the session timestamp (i.e. the trace session was started with properties.Wnode.ClientContext set to 2) and the system clock is adjusted backwards while the session is collecting events, some of the events may be delivered out-of-order. To avoid this, set ClientContext to 0 to get the default timestamp (QPC time).
  • If the trace is collected using timestamps from an imprecise clock then events with the same timestamp from different CPUs may be delivered out-of-order. This most frequently occurs when the trace uses system time for the session timestamp because system time ticks. This issue can be avoided by starting the session with EVENT_TRACE_NO_PER_PROCESSOR_BUFFERING in the LogFileMode flags, though this can have a substantial negative impact on tracing performance. Starting with Windows 10: The system time clock type uses GetSystemTimePreciseAsFileTime to reduce the likelihood of this issue.
  • If the trace is corrupt, was generated using low-level APIs that do not maintain the expected timestamp rules within the file, or uses timestamp override options when writing events, some of the events may be delivered out-of-order.

Technical details: Events are stored in buffers. Each buffer is assigned to a buffer stream, typically one stream for each CPU. The ProcessTrace implementation assumes that all events in a buffer are sorted by timestamp and that each buffer contains events for a single span of time that does not overlap the span of any other buffer in that buffer's stream. When these assumptions are not met,ProcessTracemay deliver events out-of-order.

When a real-time trace collection session has no associated trace processing sessions, collected events will be buffered by the system until the buffer is full. When a trace processing session connects to a real-time trace collection session, the trace processing session will receive the synthetic events for the session, then the buffered events, and then it will begin receiving the newly-generated real-time events. If a second real-time processing session connects to the same trace collection session, it will receive the synthetic events and the newly-generated real-time events (the second trace processing session will not receive older events).

Important

When processing events from a real-time session, if the processing callback takes too much time to process each event and events arrive too quickly, it will get behind. The system will buffer events to prevent data loss but this increases system resource usage (e.g. memory and disk usage). Avoid this problem by using session filters (e.g. level and keyword filters for each provider) to reduce the rate of incoming events, doing early filtering in your callback to skip events that don't need full processing, and optimizing your callback to return as quickly as possible to avoid blocking the processing thread.

For additional details on interpreting the event data, see Consuming Events and Retrieving Event Data Using TDH.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header evntrace.h

See also

BufferCallback

Consuming Events

Retrieving Event Data Using TDH

EVENT_TRACE_LOGFILE

OpenTrace

ProcessTrace