Hi,
After running logstash, the index"filebeatsample" could not be found in elasticsearch and data are not displayed in the stdout within the shell running logstash.Please advice.
Filebeat config file content
  -  type: log
 
   enabled: true
 
 
  paths:
     - /var/log/*.log
    - C:\Downloads\data\Test\*
Logstash Config file content:
input {
beats {
port =>5044
}
}output{
elasticsearch {
hosts => ["localhost:9200"]
index=> "filebeatsample"}
stdout { codec => rubydebug }
}