Time zone not taken into account when displaying Histogramme

Following the change of the time zone , I noticed that there is a time difference:

As you can see when put the cursor on the column of December,it displays 31th of November 23:00:00 instead of 01th of December 00:00:00.
I am using Kibana static 4.1.2-es-2.0

In the Elastic request i put the time-zone parameter ( "time_zone": "+02:00",).
The ElastiSearch response (I am showing oly the aggregations results) is as folow:

  "aggregations": {
"2": {
  "buckets": [
    {
      "key_as_string": "2018-06-01T00:00:00.000+02:00",
      "key": 1527804000000,
      "doc_count": 24
    },
    {
      "key_as_string": "2018-07-01T00:00:00.000+02:00",
      "key": 1530396000000,
      "doc_count": 34
    },
    {
      "key_as_string": "2018-08-01T00:00:00.000+02:00",
      "key": 1533074400000,
      "doc_count": 28
    },
    {
      "key_as_string": "2018-09-01T00:00:00.000+02:00",
      "key": 1535752800000,
      "doc_count": 78
    },
    {
      "key_as_string": "2018-10-01T00:00:00.000+02:00",
      "key": 1538344800000,
      "doc_count": 92
    },
    {
      "key_as_string": "2018-11-01T00:00:00.000+02:00",
      "key": 1541023200000,
      "doc_count": 32
    },
    {
      "key_as_string": "2018-12-01T00:00:00.000+02:00",
      "key": 1543615200000,
      "doc_count": 15
    },
    {
      "key_as_string": "2019-01-01T00:00:00.000+02:00",
      "key": 1546293600000,
      "doc_count": 51
    },
    {
      "key_as_string": "2019-02-01T00:00:00.000+02:00",
      "key": 1548972000000,
      "doc_count": 7
    },
    {
      "key_as_string": "2019-03-01T00:00:00.000+02:00",
      "key": 1551391200000,
      "doc_count": 17
    },
    {
      "key_as_string": "2019-04-01T00:00:00.000+02:00",
      "key": 1554069600000,
      "doc_count": 44
    },
    {
      "key_as_string": "2019-05-01T00:00:00.000+02:00",
      "key": 1556661600000,
      "doc_count": 17
    }
  ]
}

}

Can someone tell me why Kibana is not displaying the date correctly ?
Thank you in advance.

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