Commit f9df5800 by Ryan McKinley Committed by GitHub

Inspector: hide invalid stats (#26750)

parent 094254c0
......@@ -23,8 +23,12 @@ export const InspectStatsTab: React.FC<InspectStatsTabProps> = ({ data, dashboar
dataRows += frame.length;
}
if (requestTime > 0) {
stats.push({ displayName: 'Total request time', value: requestTime, unit: 'ms' });
}
if (processingTime > 0) {
stats.push({ displayName: 'Data processing time', value: processingTime, unit: 'ms' });
}
stats.push({ displayName: 'Number of queries', value: data.request.targets.length });
stats.push({ displayName: 'Total number rows', value: dataRows });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment