-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds timing info to each sample #133
Adds timing info to each sample #133
Conversation
0d0a125
to
d8bd3bb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good! As the clock_gettime
is usually fast (with vDSO in Linux), I think it won't have too much performance degradation. I'll also bench it to make sure.
BTW, please modify the CHANGELOG.md
Rest LGTM
72659dd
to
3ce1876
Compare
Signed-off-by: Francesco Vigliaturo <[email protected]>
Signed-off-by: Francesco Vigliaturo <[email protected]>
Signed-off-by: Francesco Vigliaturo <[email protected]>
3ce1876
to
32352a9
Compare
@YangKeao thanks for looking over this PR. I've updated the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@YangKeao thanks for merging the other PR. I think this is good to go as well? |
* Adds timing info to each sample Signed-off-by: Francesco Vigliaturo <[email protected]> * Updates the CHANGELOG.md Signed-off-by: Francesco Vigliaturo <[email protected]> * Add PR info to updated CHANGELOG.md Signed-off-by: Francesco Vigliaturo <[email protected]> Co-authored-by: YangKeao <[email protected]> Signed-off-by: Christian Jordan <[email protected]>
At the moment we only have timing info at
Report
level. We don't have more fine grained timing info for the samples collected.This PR aims at adding timing info (
sample_timestamp
) to the samples collected.