Benchmark report.

interface IReport {
    completed_at: string;
    count: number;
    endpoints: (IEndpoint & IStatistics)[];
    memories: IMemory[];
    simultaneous: number;
    started_at: string;
    statistics: IStatistics;
    threads: number;
}

Properties

completed_at: string
count: number
endpoints: (IEndpoint & IStatistics)[]
memories: IMemory[]
simultaneous: number
started_at: string
statistics: IStatistics
threads: number