# Kibana display time in incorrect timezone

**URL:** https://discuss.elastic.co/t/kibana-display-time-in-incorrect-timezone/152548
**Category:** Kibana
**Created:** [October 15, 2018, 7:11pm UTC](https://discuss.elastic.co/t/kibana-display-time-in-incorrect-timezone/152548 "2018-10-15T19:11:11Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![VietCong](https://avatars.discourse-cdn.com/v4/letter/v/e47774/32.png) [@VietCong](https://discuss.elastic.co/u/VietCong)
#### Post date: [October 15, 2018, 7:11pm UTC](https://discuss.elastic.co/t/kibana-display-time-in-incorrect-timezone/152548/1 "2018-10-15T19:11:11Z")

</div>

I am trying to add the logstash ingest time to my logs and facing the issues where Kibana display the time with 7 hours off. Example see below:

Current time at my location is 10/15/2018 14:03  
This is what Kibana shows:  
 ![image](https://us1.discourse-cdn.com/elastic/original/3X/7/3/73953e0b6a8bff82a9a89e2c5f5f0855099b42f5.png)

This is the time in the JSON tab of the document  
"fields": {  
"logstash\_time": [  
"2018-10-15T14:03:51.000Z"  
],  
"@timestamp": [  
"2018-10-15T19:03:49.654Z"  
],  
"@ingest\_Time": [  
"2018-10-15T14:03:51.000Z"  
]  
},

Expected results:

"fields": {  
"logstash\_time": [  
"2018-10-15T **19** :03:51.000Z"  
],  
"@timestamp": [  
"2018-10-15T19:03:49.654Z"  
],  
"@ingest\_Time": [  
"2018-10- **19** T14:03:51.000Z"  
]  
},

My Logstash code for this :

```
  ruby {  
          code => "event.set('logstash_time' , Time.now.strftime('%FT%TZ'))"
        }
  date {
    match => ["logstash_time", "ISO8601"]
    timezone => "America/Chicago"
    target => "@ingest_Time"
  }

```

How can I remove the 7 hours difference? I tried changing format in the kibana setting--\> advanced setting --\> dateFormat:tz with no luck  
As you can see that I use Date timezone filter and it doesnt work as well.  
I think a line of ruby code might fix it but I have no idea how. Please help!

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [November 12, 2018, 7:23pm UTC](https://discuss.elastic.co/t/kibana-display-time-in-incorrect-timezone/152548/2 "2018-11-12T19:23:44Z")

</div>

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