Filebeat-->Logstash receiving index issues

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 }
}

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