Struct opentelemetry::sdk::metrics::aggregators::MinMaxSumCountAggregator[][src]

pub struct MinMaxSumCountAggregator { /* fields omitted */ }
This is supported on crate feature metrics only.
Expand description

An Aggregator that aggregates events that form a distribution, keeping only the min, max, sum, and count.

Trait Implementations

Update receives a new measured value and incorporates it into the aggregation. Update calls may be called concurrently. Read more

This method is called during collection to finish one period of aggregation by atomically saving the currently-updating state into the argument Aggregator. Read more

This combines the checkpointed state from the argument Aggregator into this Aggregator. merge is not synchronized with respect to update or synchronized_move. Read more

Returns the implementing aggregator as Any for downcasting.

The count of the currently aggregated metrics

Formats the value using the given formatter. Read more

The max of the currently aggregated metrics

The min of the currently aggregated metrics

The sum of the currently aggregated metrics

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.