14 lines
322 B
C#
14 lines
322 B
C#
namespace StellaOps.Bench.Notify.Baseline;
|
|
|
|
internal sealed record BaselineEntry(
|
|
string ScenarioId,
|
|
int Iterations,
|
|
int EventCount,
|
|
int DeliveryCount,
|
|
double MeanMs,
|
|
double P95Ms,
|
|
double MaxMs,
|
|
double MeanThroughputPerSecond,
|
|
double MinThroughputPerSecond,
|
|
double MaxAllocatedMb);
|