Skip to content
1 min read · 124 words

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

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