Forum Discussion
Matthias Stier
May 08, 2018Copper Contributor
Conversion of epoch / unixtimestamps within Log Analytics
we re using a lot of epoch / unixtimestamps (seconds since 1970-1-1) in our solution and are wondering right now if there is the possibilty to convert those timestamps to datetime objects within log...
CliveWatson
Feb 28, 2019Former Employee
maybe?
datatable (unixtime:string)
[
915148798.75,
915148799.00,
915148799.25,
915148799.50,
915148799.75
]
| project todatetime(unixtime)
// line 1 of the result would be "1998-12-31T23:59:58.000"