Struct rdkafka::statistics::Window[][src]

pub struct Window {
    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,
}

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

impl Debug for Window[src]

impl<'de> Deserialize<'de> for Window[src]

Auto Trait Implementations

impl RefUnwindSafe for Window

impl Send for Window

impl Sync for Window

impl Unpin for Window

impl UnwindSafe for Window

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.