<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="10.0.0-preview.2.25163.2" />

CounterStatistics

namespace System.Diagnostics.Metrics { internal sealed class CounterStatistics : IAggregationStatistics { public double? Delta { get; } public bool IsMonotonic { get; } public double Value { get; } public CounterStatistics(double? delta, bool isMonotonic, double value) { Delta = delta; IsMonotonic = isMonotonic; Value = value; } } }