Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFix millisecond calculation for millisecs_diff() #25
Conversation
Previously, millisecs_diff() did not return milliseconds correctly, so it was not collecting according to the period settings for the profile and history.
Hi,
ISTM, millisecs_diff() did not return milliseconds correctly.
TimestampDifference() retrieves difference of second and micro second, so millisecs_diff() should be return "secs * 1000 + microsecs / 1000;" rather than "secs * 1000 + millisecs";