Complete performance metrics snapshot.
export interface PerformanceMetrics { api: ApiPerformanceMetrics; cache: CachePerformanceMetrics; matching: MatchingPerformanceMetrics; memory: { current: MemoryMetrics | null; history: MemoryMetrics[]; // Last 50 samples for trend chart }; sessionStartTime: number; // When metrics collection started} Copy
export interface PerformanceMetrics { api: ApiPerformanceMetrics; cache: CachePerformanceMetrics; matching: MatchingPerformanceMetrics; memory: { current: MemoryMetrics | null; history: MemoryMetrics[]; // Last 50 samples for trend chart }; sessionStartTime: number; // When metrics collection started}
Complete performance metrics snapshot.
Source