Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

What does timestamp: 152082360000 mean

do not understand analytics information

Posted on Mar 12, 2018 7:27 AM

Reply
1 reply

Mar 12, 2018 8:26 AM in response to tiahla

It is the number of 10-digit (not 12-digit) seconds that have elapsed since the UNIX epoch time less any leap seconds that have occurred since.


In the Terminal, you can generate the currrent time value as:


date +%s

1520823600


and convert it to human readable time format as:


date -j -u -r 1520823600

Mon Mar 12 03:00:00 UTC 2018


or as:


date -j -r 1520823600 "+%FT%T %z"

2018-03-11T23:00:00 -0400


See man date(1), strftime(3).

What does timestamp: 152082360000 mean

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.