Trace

interface ApiTrace {
    id: string;
    input?: any;
    metadata?: any;
    name?: null | string;
    output?: any;
    public?: null | boolean;
    release?: null | string;
    sessionId?: null | string;
    tags?: null | string[];
    timestamp: string;
    userId?: null | string;
    version?: null | string;
}

Properties

id: string

The unique identifier of a trace

input?: any

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

metadata?: any

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

name?: null | string

The name of the trace

output?: any

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

public?: null | boolean

Public traces are accessible via url without login

release?: null | string

The release version of the application when the trace was created

sessionId?: null | string

The session identifier associated with the trace

tags?: null | string[]

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

timestamp: string

The timestamp when the trace was created

date-time

userId?: null | string

The user identifier associated with the trace

version?: null | string

The version of the trace