Elastic Search have index file and i can add it to Kibana but is said no data

@D_Nang_Kien

Please do not share text as screen shots it is very hard to work with...

Most likely, you are writing data without a timezone, so the data is in the "future" ... you will need to account for that

All Data is stored in UTC in Elastic.
If you send data from your timezone and do not provide the timezone the data will be captured and stored as UTC...

What timezone are you in?

Rerun the generator.

Go to the Time Picker...and set exactly this and show me what you see....

and set the Time picker to precisely this. This looks into the Past and "Future"

Also run this in dev

POST /filebeat-*/_search
{
  "size": 0,
  "aggs": {
    "count": {
      "value_count": {
        "field": "@timestamp"
      }
    },
    "min_timestamp": {
      "min": {
        "field": "@timestamp"
      }
    },
    "max_timestamp": {
      "max": {
        "field": "@timestamp"
      }
    }
  }
}

Share the command and results in text, not a screenshot.

Please do not share text as screenshots

is this the correct time in your timezone...

Perhaps look at these 2 to fix the time stamp

Or tell your generator to add timezone

Or got to Kibana -> Stack Managment -> Advance Settings and set the Timezone to UTC...

Ohh and @D_Nang_Kien Welcome to the community.. thanks for joking!