Not able to fetch logs from S3 using Logstash 6.2.4

Hello all,

I am using Logstash 6.2.4 to fetch logs from s3-location. These are my configurations:
input {
s3 {
access_key_id => "#########"
secret_access_key => "#########"
bucket => "mybucket"
region => "us-east-1"
endpoint => "http://s3.us-east-1.amazonaws.com"
codec => "json"
}
}
output {
stdout { codec => rubydebug }
}

This particular piece of configuration working with Logstash 1.5. But while using Logstash 6.2.4, neither I am getting an error nor it is fetching logs from the location.
The console just gets stuck with the following INFO message:

[2018-06-06T16:52:19,355][INFO ][logstash.inputs.s3 ] Using default generated file for the sincedb {:filename=>"/home/abhi/Downloads/logstash 6.2.4/data/plugins/inputs/s3/sincedb_c4b392644e34f277777a389597720021"}

Please share your inputs on this issue, what can go wrong here.
Thanks

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