I'm on elasticsearch + kibana 6.0.0-rc2. I have a date field defined in my index like this:
"timestamp" : { "type" : "date", "format" : "date_hour_minute_second_fraction" },
and an example of my data in elasticsearch looks like this:
"timestamp": "2017-11-01T09:49:23.593",
But in the kibana discovery the date is being changed by 4 hours and looks like this:
timestamp:November 1st 2017, 05:49:23.593
I'm in the US Eastern timezone and my machine time is set correctly. I've tried changing the Kibana setting dateFormat:tz
to US/Eastern
to no avail.
Thanks