I'm looking to convert Unix timestamps to datetime but would like to have the values start from 00:00:00:000
example date:
timeStamp,elapsed
1585620084122,2
1585620084122,1
1585620084123,1
1585620084124,6
1585620084124,5
If possible I would like to see something similar to the following
timeStamp,elapsed
00:00:00.000,2
00:00:00.000,1
00:00:00.001,1
00:00:00.002,6
00:00:00.002,5