Skip to content
1 min read · 138 words

Interface: DispatchExecutorLogEntry

Defined in: lib/types/dispatch_runner.ts:160

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

PropertyTypeDescriptionDefined in
kindstringStable discriminator authored by the executor (e.g. 'retry-attempt', 'http-error').lib/types/dispatch_runner.ts:162
messagestringHuman-readable message — safe to surface in logs or test failure output.lib/types/dispatch_runner.ts:164
payload?Record<string, unknown>Optional structured detail block. Delivered to subscribers verbatim.lib/types/dispatch_runner.ts:166