# Load Epoch time

**URL:** https://discuss.elastic.co/t/load-epoch-time/44410
**Category:** Logstash
**Created:** [March 15, 2016, 9:18am UTC](https://discuss.elastic.co/t/load-epoch-time/44410 "2016-03-15T09:18:35Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![chenbe2204](https://avatars.discourse-cdn.com/v4/letter/c/c5a1d2/32.png) [@chenbe2204](https://discuss.elastic.co/u/chenbe2204)
#### Post date: [March 16, 2016, 6:07am UTC](https://discuss.elastic.co/t/load-epoch-time/44410/7 "2016-03-16T06:07:30Z")

</div>

Hi ,

I also tried to put the time filter after the json filter (with and without target).  
I can see the new loaded index with the new record under the list of indexes in the ElasticSearch (using the command curl 'localhost:9200/\_cat/indices?v') but I can't reach the data in the Kibana

filter{  
json {  
source =\> "message"  
}  
}

filter{  
date {  
match =\> ["startTime", "UNIX"]  
target =\> "@timestamp"  
}  
}

The time is added automatically as the load time of the data into the ElasticSearch , I don't define in the conf file or in the Json file this field (It's also not part of the fields of the index\_client I create).  
I also tried the following things:

- to change the startTime in the Json file to string
- create 1 filter and put the data after the json  
It still doesn't work.

BR,  
Chen

---

_[View the full topic](https://discuss.elastic.co/t/load-epoch-time/44410)._
