Hi,
I have the following Filebeat configuration;
output.kafka:
enabled: true
hosts: ["192.168.0.1:<PORT>"]
topic: testtopic
What port should I provide here? I am entirely new to Kafka. I have Kafka installed and I have the following config files under config folder;
- connect-console-sink.properties
- connect-console-source.properties
- connect-distributed.properties
- connect-file-sink.properties
- connect-file-source.properties
- connect-log4j.properties
- connect-standalone.properties
- consumer.properties
- log4j.properties
- producer.properties
- server.properties
- tools-log4j.properties
- zookeeper.properties
I have seen clientPort=2181
in zookeeper.properties and bootstrap.servers=192.168.0.1:9092
in producer.properties. So, what port should I mention in filebeat and where can I get that from?
Thanks.