[][src]Struct rdkafka::statistics::ConsumerGroup

pub struct ConsumerGroup {
    pub state: String,
    pub stateage: i64,
    pub join_state: String,
    pub rebalance_age: i64,
    pub rebalance_cnt: i64,
    pub rebalance_reason: String,
    pub assignment_size: i32,
}

Consumer group manager statistics.

Fields

state: String

The local consumer group handler's state.

stateage: i64

The time elapsed since the last state change, in milliseconds.

join_state: String

The local consumer group hander's join state.

rebalance_age: i64

The time elapsed since the last rebalance (assign or revoke), in milliseconds.

rebalance_cnt: i64

The total number of rebalances (assign or revoke).

rebalance_reason: String

The reason for the last rebalance.

This string will be empty if no rebalances have occurred.

assignment_size: i32

The partition count for the current assignment.

Trait Implementations

impl Debug for ConsumerGroup[src]

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

Auto Trait Implementations

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.