Can't get my filebeat to work

I'm new to ELK and I cannot figure out how to get my filebeat to successfully send logs to logstash -> elasticsearch -> kibana

filebeat config
filebeat.inputs:

  • type: log
    enabled: true
    paths:
    • C:\Users\smithbrianna\Documents\VMware log files*.log

output.logstash:
hosts: ["myservername:5044"]
username: ""
password: "
"
setup.kibana:
host: "myservername:5601"
username: ""
password: "
"

logstash config
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => ["localhost"]
user => ''
password => '
'
}
}

Please format logs and configuration files using the </> button.

Any errors in the logs?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.