Class MetricsSummary
- Namespace
- DotCompute.Abstractions.Debugging
- Assembly
- DotCompute.Abstractions.dll
Represents a statistical summary of metrics data.
public sealed class MetricsSummary
- Inheritance
-
MetricsSummary
- Inherited Members
Properties
Average
Gets the average value.
public double Average { get; init; }
Property Value
Count
Gets the total number of data points.
public int Count { get; init; }
Property Value
FirstRecorded
Gets the timestamp of the first recorded value.
public DateTime FirstRecorded { get; init; }
Property Value
LastRecorded
Gets the timestamp of the last recorded value.
public DateTime LastRecorded { get; init; }
Property Value
Maximum
Gets the maximum value.
public double Maximum { get; init; }
Property Value
Median
Gets the median value.
public double Median { get; init; }
Property Value
MetricName
Gets the metric name.
public string MetricName { get; init; }
Property Value
Minimum
Gets the minimum value.
public double Minimum { get; init; }
Property Value
Percentile95
Gets the 95th percentile value.
public double Percentile95 { get; init; }
Property Value
Percentile99
Gets the 99th percentile value.
public double Percentile99 { get; init; }
Property Value
StandardDeviation
Gets the standard deviation.
public double StandardDeviation { get; init; }
Property Value
Sum
Gets the sum of all values.
public double Sum { get; init; }