pub struct Window {
Show 14 fields pub min: i64, pub max: i64, pub avg: i64, pub sum: i64, pub cnt: i64, pub stddev: i64, pub hdrsize: i64, pub p50: i64, pub p75: i64, pub p90: i64, pub p95: i64, pub p99: i64, pub p99_99: i64, pub outofrange: i64,
}
Expand description

Rolling window statistics.

These values are not exact; they are sampled estimates maintained by an HDR histogram in librdkafka.

Fields

min: i64

The smallest value.

max: i64

The largest value.

avg: i64

The mean value.

sum: i64

The sum of all values.

cnt: i64

The total number of values.

stddev: i64

The standard deviation.

hdrsize: i64

The memory size of the underlying HDR histogram.

p50: i64

The 50th percentile.

p75: i64

The 75th percentile.

p90: i64

The 90th percentile.

p95: i64

The 95th percentile.

p99: i64

The 99th percentile.

p99_99: i64

The 99.99th percentile.

outofrange: i64

The number of values not included in the underlying histogram because they were out of range.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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.