Share via


HistogramStatistics<T> Class

Definition

Tracks the statistics for a histogram for a given scope (all-up or bucketized).

public class HistogramStatistics<T> where T : struct
type HistogramStatistics<'T (requires 'T : struct)> = class
Public Class HistogramStatistics(Of T)

Type Parameters

T

The base numeric type of the histogram.

Inheritance
HistogramStatistics<T>

Constructors

Name Description
HistogramStatistics<T>(IMeter, HistogramConfiguration)

Initializes a new instance of the HistogramStatistics<T> class.

Properties

Name Description
Average

Gets the average value recorded within the statistical set.

Counter

Gets the Counter representing the sum and count of datapoint values within the statistical set.

FirstRecorded

Gets the time the first event was recorded.

LastRecorded

Gets the time the last event was recorded.

Max

Gets the maximum value recorded within the statistical set. If null, it's untracked.

Median

Gets the median value recorded within the statistical set. If null, it's untracked.

Min

Gets the minimum value recorded within the statistical set. If null, it's untracked.

Applies to