Skip to content

Commit

Permalink
add period length (in seconds) to the result summary
Browse files Browse the repository at this point in the history
- this allows the user to quickly determine how long all the clients
  were synchronized and the data was aggregated for
  • Loading branch information
k-rister committed Dec 6, 2023
1 parent db2477a commit 2517de0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions queries/cdmq/get-result-summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,11 @@ runIds.forEach((runId) => {
iterPrimaryPeriodRanges[i][j].end,
noHtml
);
logOutput(' period length: ' +
((iterPrimaryPeriodRanges[i][j].end - iterPrimaryPeriodRanges[i][j].begin) / 1000) +
' seconds',
noHtml
);
//for (var k=0; k<benchmarks.length; k++) {
var primaryMetrics = list(iterPrimaryMetrics[i]);
for (var k = 0; k < primaryMetrics.length; k++) {
Expand Down

0 comments on commit 2517de0

Please sign in to comment.