pub type GroupMemberDescription = ConsumerGroupMemberDescription;Expand description
Backwards-compatible alias for ConsumerGroupMemberDescription.
Aliased Type§
pub struct GroupMemberDescription {
pub member_id: String,
pub group_instance_id: Option<String>,
pub client_id: String,
pub client_host: String,
pub member_metadata_bytes: usize,
pub member_assignment_bytes: usize,
}Fields§
§member_id: StringKafka-assigned member ID.
group_instance_id: Option<String>Static membership instance ID, when configured.
client_id: StringClient ID reported by the member.
client_host: StringHost reported by the member.
member_metadata_bytes: usizeCount derived from member metadata. For consumer/share groups this is the number of subscribed topic names; for classic groups it is decoded from the classic subscription payload when possible.
member_assignment_bytes: usizeCount derived from member assignment metadata. For consumer/share groups this is the number of assigned partitions; for classic groups it is decoded from the classic assignment payload when possible.