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

**URL:** https://discuss.elastic.co/t/elastic-search-have-index-file-and-i-can-add-it-to-kibana-but-is-said-no-data/365862
**Category:** Beats
**Tags:** filebeat
**Created:** [September 1, 2024, 10:11am UTC](https://discuss.elastic.co/t/elastic-search-have-index-file-and-i-can-add-it-to-kibana-but-is-said-no-data/365862 "2024-09-01T10:11:24Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![stephenb](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/stephenb/32/40856_2.png) [@stephenb](https://discuss.elastic.co/u/stephenb)
#### Post date: [September 2, 2024, 2:37pm UTC](https://discuss.elastic.co/t/elastic-search-have-index-file-and-i-can-add-it-to-kibana-but-is-said-no-data/365862/7 "2024-09-02T14:37:56Z")

</div>

@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"

 ![Screenshot 2024-09-02 at 7.24.51 AM](https://us1.discourse-cdn.com/elastic/original/3X/a/2/a2a81e60e0d16d2a6f976a46fd2762fa609fc2fb.png)

 ![Screenshot 2024-09-02 at 7.24.46 AM](https://us1.discourse-cdn.com/elastic/original/3X/e/e/ee80699285e84047fc202a97bb1b00845d21296d.png)

 ![Screenshot 2024-09-02 at 7.25.00 AM](https://us1.discourse-cdn.com/elastic/original/3X/4/9/49d044c21b38907c44336529e0fc314dd49d6892.png)

Also run this in dev

```auto
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...

 ![Screenshot 2024-09-02 at 7.36.16 AM](https://us1.discourse-cdn.com/elastic/original/3X/0/f/0f33136831cf0a6164444f8a22c4f4498c28ce96.png)

Perhaps look at these 2 to fix the time stamp

> **[Add the local time zone | Filebeat Reference \[8.15\] | Elastic](https://www.elastic.co/guide/en/beats/filebeat/current/add-locale.html)**

> **[Timestamp | Filebeat Reference \[8.15\] | Elastic](https://www.elastic.co/guide/en/beats/filebeat/current/processor-timestamp.html)**

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!

---

_[View the full topic](https://discuss.elastic.co/t/elastic-search-have-index-file-and-i-can-add-it-to-kibana-but-is-said-no-data/365862)._
