spotify / XCMetrics

XCMetrics is the easiest way to collect Xcode build metrics and improve developer productivity.
https://xcmetrics.io
Other
1.1k stars 77 forks source link

Question: Duration is which time unit? #39

Closed AyaAkl25 closed 3 years ago

AyaAkl25 commented 3 years ago

Hey, I have a question regarding the duration double value for builds, which time unit is it.. microseconds or milliseconds?

Thank you

akkrat commented 3 years ago

Seems like it's megaseconds :) i.e. actual duration = duration * 1000000 You can simply check it calculating the difference between end_timestamp and start_timestamp columns

AyaAkl25 commented 3 years ago

Seems like it's megaseconds :) i.e. actual duration = duration * 1000000 You can simply check it calculating the difference between end_timestamp and start_timestamp columns

Thank you :)