-
Notifications
You must be signed in to change notification settings - Fork 687
Check Kafka topic ingestion
Roberto Rodriguez edited this page Jan 25, 2019
·
1 revision
There are a few ways that you can accomplish this.
Access your kafka broker container by running the following command:
sudo docker exec -ti helk-kafka-broker bash
Run the kafka-console-consumer.sh
script available in the container:
/opt/helk/kafka/bin/kafka-console-consumer.sh --bootstrap-server helk-kafka-broker:9092 --topic winlogbeat --from-beginning
or simply run the script without an interactive shell
sudo docker exec -ti helk-kafka-broker /opt/helk/kafka/bin/kafka-console-consumer.sh --bootstrap-server helk-kafka-broker:9092 --topic winlogbeat --from-beginning
It is generic non-JVM producer and consumer for Apache Kafka >=0.8, think of it as a netcat for Kafka. You can install it by following the instructions from the Kafkacat repo.
kafkacat -b 10.0.10.100:9092 -t winlogbeat -C