Interface: DispatchExecutorLogEntry
Defined in: src/lib/types/dispatch_runner.ts:179
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 | Defined in |
|---|---|---|---|
kind | string | Stable discriminator authored by the executor (e.g. 'retry-attempt', 'http-error'). | src/lib/types/dispatch_runner.ts:181 |
message | string | Human-readable message — safe to surface in logs or test failure output. | src/lib/types/dispatch_runner.ts:183 |
payload? | Record<string, unknown> | Optional structured detail block. Delivered to subscribers verbatim. | src/lib/types/dispatch_runner.ts:185 |