Skip to content

Commit

Permalink
std dev and error count displaying perc diff fix (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Jun 28, 2023
1 parent d73184e commit 46f6fab
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@ export class RequestStatsCompareComponent implements OnInit, OnDestroy {
bytesPerSecond: this.calculatePercDifference(_.bytesPerSecond, labelToBeCompared.bytesPerSecond),
bytesSentPerSecond: this.calculatePercDifference(_.bytesSentPerSecond, labelToBeCompared.bytesSentPerSecond),
errorRate: this.calculatePercDifference(_.errorRate, labelToBeCompared.errorRate),
throughput: this.calculatePercDifference(_.throughput, labelToBeCompared.throughput)
throughput: this.calculatePercDifference(_.throughput, labelToBeCompared.throughput),
failures: this.calculatePercDifference(_.failures, labelToBeCompared.failures),
standardDeviation: this.calculatePercDifference(_.standardDeviation, labelToBeCompared.standardDeviation),
};
} else {
this.comparisonWarning.push(`${_.label} label not found`);
Expand All @@ -267,6 +269,8 @@ export class RequestStatsCompareComponent implements OnInit, OnDestroy {
errorRate: null,
throughput: null,
bytes: null,
failures: null,
standardDeviation: null,
};
}
});
Expand Down

0 comments on commit 46f6fab

Please sign in to comment.