@logixjs/sandbox
    Preparing search index...

    Interface TraceSpan

    Sandbox public type definitions.

    interface TraceSpan {
        attributes?: Record<string, unknown>;
        endTime?: number;
        intentId?: string;
        name: string;
        parentSpanId?: string;
        spanId: string;
        startTime: number;
        status: "running" | "success" | "error" | "cancelled";
        stepId?: string;
    }
    Index

    Properties

    attributes?: Record<string, unknown>
    endTime?: number
    intentId?: string
    name: string
    parentSpanId?: string
    spanId: string
    startTime: number
    status: "running" | "success" | "error" | "cancelled"
    stepId?: string