Langfuse JS/TS SDKs
    Preparing search index...

    Interface Trace

    This file was auto-generated by Fern from our API Definition.

    interface Trace {
        environment?: string;
        id: string;
        input?: unknown;
        metadata?: unknown;
        name?: string;
        output?: unknown;
        public?: boolean;
        release?: string;
        sessionId?: string;
        tags?: string[];
        timestamp: string;
        userId?: string;
        version?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    environment?: string

    The environment from which this trace originated. Can be any lowercase alphanumeric string with hyphens and underscores that does not start with 'langfuse'.

    id: string

    The unique identifier of a trace

    input?: unknown

    The input data of the trace. Can be any JSON.

    metadata?: unknown

    The metadata associated with the trace. Can be any JSON.

    name?: string

    The name of the trace

    output?: unknown

    The output data of the trace. Can be any JSON.

    public?: boolean

    Public traces are accessible via url without login

    release?: string

    The release version of the application when the trace was created

    sessionId?: string

    The session identifier associated with the trace

    tags?: string[]

    The tags associated with the trace. Can be an array of strings or null.

    timestamp: string

    The timestamp when the trace was created

    userId?: string

    The user identifier associated with the trace

    version?: string

    The version of the trace