evalution
    Preparing search index...

    Interface TraceSummary

    Compact trace entry for listings (sidebar / GET /api/traces).

    interface TraceSummary {
        endTime?: number;
        id: string;
        name: string;
        providerId: string;
        spanCount: number;
        startTime: number;
        status: "ok" | "error" | "running";
    }

    Hierarchy

    • TraceBase
      • TraceSummary
    Index

    Properties

    endTime?: number

    End timestamp (ms), or undefined while the trace is still running.

    id: string
    name: string
    providerId: string
    spanCount: number

    Number of spans currently associated with the trace.

    startTime: number

    Start timestamp (ms).

    status: "ok" | "error" | "running"