Module statistic

Module statistic 

Source
Expand description

Statistics and sample aggregation.

Modules§

recipe
Type definitions and respellings of common or interesting statistic types.

Structs§

ArithmeticMean
Arithmetic mean statistic.
Last
Statistic for keeping the most recent sample.
LatchMax
Maximum statistic that sums non-monotonic samples into the maximum.
Max
Maximum statistic.
Min
Minimum statistic.
PostAggregation
Post-aggregation transform.
Reset
Applies an arbitrary reset function to a Statistic.
Sum
Sum statistic.
Union

Enums§

FoldError
Sample folding error.

Traits§

SerialStatistic
A Statistic for which an in-memory ring buffer encoding is defined.
Statistic
A statistical function type that folds samples into an aggregation.
StatisticExt
Extension methods for Statistics.

Type Aliases§

Aggregation
The associated aggregation type of a Statistic.
Metadata
The associated metadata type of a Statistic.
Sample
The associated sample type of a Statistic.
Semantic
The associated data semantic type of a Statistic.
Transform
A post-aggregation of a function pointer.