Skip to content
1 min read · 155 words

Interface: LogEvent

Payload fired on the observability log hook for every structured event emitted via DispatchExecutorHelpers.log.

Remarks

Enriched by the runner with the active dispatchId and 0-based iteration index so subscribers can correlate events across multiple in-flight dispatches without threading extra context themselves.

Properties

PropertyTypeDescription
dispatchIdstringStable identifier for the dispatch that produced the event.
emittedAtDateTimeWhen the event was emitted.
iterationnumber0-based iteration index within the dispatch.
kindstringStable discriminator authored by the executor.
levelDispatchExecutorLogLevelSeverity level the executor selected.
messagestringHuman-readable message.
payload?Record<string, unknown>Optional structured detail block.