Logstash service keeps pausing

I installed Logstash on Windows Server 2012R2 using the steps referenced here : http://robwillis.info/2016/05/installing-elasticsearch-logstash-and-kibana-elk-on-windows-server-2012-r2/
The service was installed succesfully but it keeps pausing and when i start it manually i get this error:
Capture
The JAVA-HOME is set correctly and here is the Logstash.json :
//input {
beats {
port => 5044
type => "log"
}
}

output {
elasticsearch {
hosts => "localhost:9200"
manage_template => false
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}

I'll be grateful for any suggestions.

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