Reputation: 2257
I'm trying to understand a third party system which gives timestamp in the format as '1384915445000'. An example of the system output entry is as follows:
"#A6","Address","Timestamp","MessageType","UserName","StnName","PairKey","ShelfID","TargetTimestamp","stShelfIDBeforeRelease","SrcStnNo","AlarmType","SubCondition","GroupID"
"A4A1","0x00000000","1384915445000","1384915445617.82","Start ( Virtual )","0","238","System","238","HIS0164","","","","","Low","","","","","","","","0"
Does anybody know this time stamp format?
Upvotes: 0
Views: 141
Reputation: 172448
This is a unix timestamp containing milliseconds.
So
1384915445000 milliseconds = 1384915445 seconds
And 1384915445 = November, 20 2013 02:44:05+0000
Upvotes: 2
Reputation: 24212
It's a Unix timestamp, but in milliseconds instead of seconds.
1384915445000ms = 1384915445s = Wed, 20 Nov 2013 02:44:05 GMT
Upvotes: 5