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?
TimeLocal = datetime_utc_to_local(timestamp, "America/Los_Angeles")
. Not perfectly supported, as the column name output for the above projection isTimeLocal [UTC]
, but I'll live. – Chiekochien