kafka console consumer pretty print json

Viewed 2623

How to print response from Kafka console consumer to JSON pretty. I have tried this but it's not working.

./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic indexing-v1 
--from-beginning | python -m json.tool
1 Answers

Using jq was able to view pretty JSON. Thanks.

./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic indexing-v1 
--from-beginning  | jq 
Related