Skip to content

Commit 33be6b9

Browse files
committed
Beyond ~ 200,000,000 events EventsPerMs overflows
1 parent 42eb997 commit 33be6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SeqCli/Cli/Commands/Bench/QueryBenchRunResults.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ private double MeanRelativeStandardDeviationPercentage()
4747
return _collectedTimings.Average(c => c.RelativeStandardDeviationElapsed) * 100;
4848
}
4949

50-
private int FinalEventCount()
50+
private long FinalEventCount()
5151
{
5252
var benchCase = _collectedTimings.Single(c => c.Id == FINAL_COUNT_CASE.Id);
53-
return Convert.ToInt32(benchCase.LastResult);
53+
return Convert.ToInt64(benchCase.LastResult);
5454
}
5555
}

0 commit comments

Comments
 (0)