Interface MatchingPerformanceMetrics

Matching process performance metrics tracking speed and throughput.

export interface MatchingPerformanceMetrics {
totalMatched: number;
averageSpeed: number; // titles per minute
currentSpeed: number; // real-time speed (titles per minute)
totalDuration: number; // milliseconds
lastUpdateTimestamp: number;
}
interface MatchingPerformanceMetrics {
    totalMatched: number;
    averageSpeed: number;
    currentSpeed: number;
    totalDuration: number;
    lastUpdateTimestamp: number;
}

Properties

totalMatched: number
averageSpeed: number
currentSpeed: number
totalDuration: number
lastUpdateTimestamp: number