Hi I am looking for a confluent cli command to use GetOffsetShell to get the earliest and latest offsets and to get consumer group details.
Looking for Confluent cli commands for below kafka commands,
Fetching offset details
/opt/kafka/bin/kafka-run-class.sh kafka.tools.GetOffsetShell \
--broker-list localhost:9092 \
--topic my_topic \
--time -1
Fetching list of consumer group
kafka-consumer-groups.bat --bootstrap-server localhost:9092 --list
Describe consumer group
kafka-consumer-groups.bat --bootstrap-server localhost:9092 --describe group <group_name>
Can someone help me in getting these commands functionality using confluent cli commands?