Hi!! I'm new to logstash and i'm stuck at this point . Earlier in the first run i got an error like Broker invalid and after that it's stuck at Successfully started Logstash API endpoint {:port=>9601}
My conf file:
` input {
file {
path => "/var/log/10k.log.save"
start_position => "beginning"
}
}
output {
kafka {
bootstrap_servers => "xxx:9092"
topic_id => 'xxx'
}
} `
Thanks