Interface ImportResult

Summary of a completed import operation returned by Memory.import().

interface ImportResult {
    imported: number;
    skipped: number;
    errors: string[];
}

Properties

imported: number

Number of traces successfully imported and written to the store.

skipped: number

Number of traces skipped (deduplication or format mismatch).

errors: string[]

Human-readable error messages for any traces that failed to import.