I have this simple query
MyLog
| summarize avg(executionTimeInMS_d) by bin(TimeGenerated, 5min)
I'd like the summary to be in my local time zone, not UTC. This does not work :
MyLog
| summarize avg(executionTimeInMS_d) by bin(TimeGenerated-5, 5min)
Can this be done?
You can do this by subtracting/adding the time different from UTC. For example, to convert to EST. I subtracted 5h from
TimeGenerated
which is in UTC.