Gateway log export does not contain Time

When exporting the gateway log there is no Datetime timestamp; however, there is a datetime when viewing the log in the gateway webpage. The timestamp that is present in the exported log is more of an index. Is there a way to get the actual date-time from a log exported from the gateway?

The tstamp column in log exports is a timestamp - it’s a count of milliseconds since epoch (because that’s how Java stores date/times). Depending on where you’re interpreting that data, you can usually just divide by 1000 and use a built in function to do the conversion.

1 Like

I converted from epoch, but didn’t divide by 1000. That made it work. Thanks!

1 Like