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
| Property | Type | Description |
|---|---|---|
dispatchId | string | Stable identifier for the dispatch that produced the event. |
emittedAt | DateTime | When the event was emitted. |
iteration | number | 0-based iteration index within the dispatch. |
kind | string | Stable discriminator authored by the executor. |
level | DispatchExecutorLogLevel | Severity level the executor selected. |
message | string | Human-readable message. |
payload? | Record<string, unknown> | Optional structured detail block. |