@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface ExecutionRecordSnapshot

    Completed execution recording tree returned by record(...).

    interface ExecutionRecordSnapshot {
        correlationId: string;
        finishedAt: number;
        roots: readonly ExecutionRecordNode[];
        startedAt: number;
    }
    Index

    Properties

    correlationId: string

    Correlation id shared by every node in the recording.

    finishedAt: number

    Epoch timestamp when recording completed.

    roots: readonly ExecutionRecordNode[]

    Top-level recorded executions for this snapshot.

    startedAt: number

    Epoch timestamp when recording began.