In one of .conf file i received No files found is s3 bucket . So is this is error of my connection with S3 bucket is wrong.
How i can check this that is problem is their or not ?
var/log/logstash Logs
[2022-02-18T16:26:42,478][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/devicestatus/pinpad/rbi_"}
[2022-02-18T16:26:45,614][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/devicestatus/pos-fp/rbi_"}
[2022-02-18T16:26:50,366][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/pos/qst"}
[2022-02-18T16:26:57,966][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/pos_daily/ls.s3"}
[2022-02-18T16:26:59,419][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"VHQ"}
[2022-02-18T16:27:00,669][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/pos/POSHealth_TH_AllStores"}
[2022-02-18T16:27:12,491][INFO ][logstash.inputs.s3 ] S3 input: No files found in bucket {:prefix=>"production/devicestatus/pinpad/rbi_"}
.conf file
input {
s3 {
bucket => "XYZ"
access_key_id => "${ACCESS}"
secret_access_key => "${SECRET}"
interval => 7200
sincedb_path => "/dev/null"
include_object_properties => true
delete => true
prefix => "production/pos_daily/ls.s3"
add_field => { "vendor" => "SICOM"}
}
}