SongGuess
    Preparing search index...
    interface TraceItem {
        cpuTime: number;
        diagnosticsChannelEvents: TraceDiagnosticChannelEvent[];
        dispatchNamespace?: string;
        durableObjectId?: string;
        entrypoint?: string;
        event:
            | TraceItemFetchEventInfo
            | TraceItemJsRpcEventInfo
            | TraceItemConnectEventInfo
            | TraceItemScheduledEventInfo
            | TraceItemAlarmEventInfo
            | TraceItemQueueEventInfo
            | TraceItemEmailEventInfo
            | TraceItemTailEventInfo
            | TraceItemCustomEventInfo
            | TraceItemHibernatableWebSocketEventInfo
            | null;
        eventTimestamp: number
        | null;
        exceptions: TraceException[];
        executionModel: string;
        logs: TraceLog[];
        outcome: string;
        preview?: TracePreviewInfo;
        scriptName: string | null;
        scriptTags?: string[];
        scriptVersion?: ScriptVersion;
        tailAttributes?: Record<string, string | number | boolean>;
        truncated: boolean;
        wallTime: number;
    }
    Index

    Properties

    cpuTime: number
    diagnosticsChannelEvents: TraceDiagnosticChannelEvent[]
    dispatchNamespace?: string
    durableObjectId?: string
    entrypoint?: string
    eventTimestamp: number | null
    exceptions: TraceException[]
    executionModel: string
    logs: TraceLog[]
    outcome: string
    scriptName: string | null
    scriptTags?: string[]
    scriptVersion?: ScriptVersion
    tailAttributes?: Record<string, string | number | boolean>
    truncated: boolean
    wallTime: number