Elastic search date histogram query with interval hour returning values from 5am

I have date histogram query with interval set to hour and with time zone value set to +05:30
always giving the starting value from 5 am, and followed the date histogram query i have a avg aggregation query.

"aggs": {
    "hourlyData": {
      "date_histogram": {
        "field": "page.time",
        "interval": "hour",
        "time_zone": "+05:30"
      }

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