Log total task runtime in the statistics

This commit is contained in:
ConfusedPolarBear 2022-07-18 00:42:03 -05:00
parent 7c76954116
commit 4923d35c03

View File

@ -392,10 +392,11 @@
let stats = await getJson("Intros/Statistics"); let stats = await getJson("Intros/Statistics");
// Select which fields to print and label them with more friendly descriptions // Select which fields to print and label them with more friendly descriptions
let fields = "TotalCPUTime,FingerprintCPUTime,FirstPassCPUTime,SecondPassCPUTime,IndexSearches," + let fields = "TotalTaskTime,TotalCPUTime,FingerprintCPUTime,FirstPassCPUTime,SecondPassCPUTime," +
"QuickScans,FullScans,TotalQueuedEpisodes"; "IndexSearches,QuickScans,FullScans,TotalQueuedEpisodes";
let friendlyNames = { let friendlyNames = {
TotalTaskTime: "Total task time",
TotalCPUTime: "Total CPU time", TotalCPUTime: "Total CPU time",
FingerprintCPUTime: "Fingerprint CPU time", FingerprintCPUTime: "Fingerprint CPU time",
FirstPassCPUTime: "First pass CPU time", FirstPassCPUTime: "First pass CPU time",