Kibana not showing logs from logstash-* if input is from s3 bucket

Hi,
I have one server with logstash installed and another one with elasticsearch and kibana.
In logstash server
if i use input
file {
path => "name.log"
start_position => "beginning"
sincedb_path => "/dev/null"
codec => "json"
}

then its inserted in leastic and kibana shows all the logs correctly.

But if i use input{}
s3 {
access_key_id => "XXXXXXX"
bucket => "DFDFD"
region => "REE"
secret_access_key => "BHBHBHB"
prefix => "myfile"
sincedb_path => "/dev/null"
codec => "json"
backup_add_prefix => "PNAME"
backup_to_bucket => 'BNAME'
delete => true
}
data is inserted in elastic but its not logged in the kibana.

Is there anything i am missing out in this?
Help appreciated.

How do you see a data in elasticsearch?? Can you post something??

In Kibana => dev tool
run
GET /tests3index/tests3type/_search

I didnt understand yet... Why S3 and not elasticsearch tag on output... How do you could see a data in elasticsearch e didnt see in kibana.... Did you filter the date correctity??

Hi,
I fixed the issue the kibana and YML files was not configured properly.

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