I managed to figure it out, here is the KQL that I used in the end (had to convert to long):
CommonSecurityLog
| extend SourceTime = unixtime_milliseconds_todatetime(tolong(ReceiptTime))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
Is there an Azure Sentinel KQL that will allow me to take EPOCH time and display it as a normal DateTime such as 11/20/2020, 11:24:31.227 AM in a column as standard?
I managed to figure it out, here is the KQL that I used in the end (had to convert to long):
CommonSecurityLog
| extend SourceTime = unixtime_milliseconds_todatetime(tolong(ReceiptTime))