evalution
    Preparing search index...

    Interface Trace

    Top-level trace for a single invocation (e.g. one prompt execution).

    interface Trace {
        attributes?: Record<string, unknown>;
        endTime?: number;
        id: string;
        name: string;
        providerId?: string;
        startTime: number;
        status: "ok" | "error" | "running";
    }

    Hierarchy

    • TraceBase
      • Trace
    Index

    Properties

    attributes?: Record<string, unknown>

    Free-form attributes (e.g. prompt ID, function params).

    endTime?: number

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

    id: string
    name: string
    providerId?: string
    startTime: number

    Start timestamp (ms).

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