I have the following config file:
input{
beats{
port => "5043"
}
}
output{
elasticsearch {
hosts => ["localhost:9200"]
index => "winlogbeat"
document_type => "%{[@metadata][type]}"
user => "USERNAME"
password => "PASS"
}
}
However, when running netstat -tulpn it seems that port 5043 is being listen for IPV6 only.
I believe that this is why I keep getting timeouts when trying to send over logs.
Appreciate the help,
thanks
X