I read that in kafka docs: Kafka also has a command line consumer that will dump out messages to standard output.
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
I wonder that if I want to consumer messages and push them to another output, what options to be add to the above command. kafka-console-consumer does not have --help option, I can't find any parameters, options for command.
Thank you