Interface: DispatchExecutorLogEntry
Per-call structured payload for DispatchExecutorLogChannel.
Remarks
kind is a short, stable discriminator the executor authored — observability middleware matches on it to filter / group / aggregate events without parsing the human-readable message. payload is the structured detail block; it is delivered to subscribers verbatim (the runner never inspects it).
Properties
| Property | Type | Description |
|---|---|---|
kind | string | Stable discriminator authored by the executor (e.g. 'retry-attempt', 'http-error'). |
message | string | Human-readable message — safe to surface in logs or test failure output. |
payload? | Record<string, unknown> | Optional structured detail block. Delivered to subscribers verbatim. |