Interface PerformanceStatistics

Performance statistics aggregated by strategy.

interface PerformanceStatistics {
    events: PerformanceContract[];
    metricStats: Record<string, MetricStats>;
    strategyName: string;
    totalDuration: number;
    totalEvents: number;
}

Properties

All raw performance events

metricStats: Record<string, MetricStats>

Statistics grouped by metric type

strategyName: string

Strategy name

totalDuration: number

Total execution time across all metrics (ms)

totalEvents: number

Total number of performance events recorded