Table of Contents

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

double

Count

Gets the total number of data points.

public int Count { get; init; }

Property Value

int

FirstRecorded

Gets the timestamp of the first recorded value.

public DateTime FirstRecorded { get; init; }

Property Value

DateTime

LastRecorded

Gets the timestamp of the last recorded value.

public DateTime LastRecorded { get; init; }

Property Value

DateTime

Maximum

Gets the maximum value.

public double Maximum { get; init; }

Property Value

double

Median

Gets the median value.

public double Median { get; init; }

Property Value

double

MetricName

Gets the metric name.

public string MetricName { get; init; }

Property Value

string

Minimum

Gets the minimum value.

public double Minimum { get; init; }

Property Value

double

Percentile95

Gets the 95th percentile value.

public double Percentile95 { get; init; }

Property Value

double

Percentile99

Gets the 99th percentile value.

public double Percentile99 { get; init; }

Property Value

double

StandardDeviation

Gets the standard deviation.

public double StandardDeviation { get; init; }

Property Value

double

Sum

Gets the sum of all values.

public double Sum { get; init; }

Property Value

double