Skip to content
1 min read · 17 words

Type Alias: IsolationReportPhase

ts
type IsolationReportPhase =
  | "spawn:start"
  | "spawn:ready"
  | "spawn:error"
  | "dispose:start"
  | "dispose:done"
  | "recycle:start"
  | "recycle:done"
  | "crash"
  | "respawn:auto"
  | "call:start"
  | "call:settle"
  | "stream:start"
  | "stream:end"
  | "stream:error"
  | "stream:cancel"
  | "abort:sent"
  | "wire:out"
  | "wire:in"
  | "codec:escalate";

Defined in: src/batteries/isolation/observability.ts:18

The coarse phase groups an isolation report can belong to.