Hi,
I have done the below configuration. I am able start the logstash but kafka not reading the logs. Please help me to resolve this issue.
input {
file{
path=> ["/etc/logstash/*.log"]
}
}
output{
kafka
{
bootstrap_servers => 'server_ip:9092'
topic_id => 'poc'
}
}