xray-core
    Preparing search index...

    Interface XRaySession

    A complete execution trace for a multi-step pipeline

    interface XRaySession {
        completedAt?: string;
        id: string;
        metadata: Record<string, unknown>;
        name: string;
        startedAt: string;
        status: XRayStatus;
        steps: XRayStep[];
    }
    Index

    Properties

    completedAt?: string

    ISO timestamp when session completed (if finished)

    id: string

    Unique identifier for the session

    metadata: Record<string, unknown>

    Arbitrary metadata about the session context

    name: string

    Human-readable name for the session

    startedAt: string

    ISO timestamp when session started

    status: XRayStatus

    Current status of the session

    steps: XRayStep[]

    Ordered list of steps in the pipeline