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
}
interface PerformanceMetrics {
    api: ApiPerformanceMetrics;
    cache: CachePerformanceMetrics;
    matching: MatchingPerformanceMetrics;
    memory: { current: null | MemoryMetrics; history: MemoryMetrics[] };
    sessionStartTime: number;
}

Properties

memory: { current: null | MemoryMetrics; history: MemoryMetrics[] }
sessionStartTime: number