-
Notifications
You must be signed in to change notification settings - Fork 12
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
[PROF-11524] Fix not being able to set profile start_time at serialization #963
Conversation
…ation **What does this PR do?** In #926 we removed the `start_time` argument from * `ddog_prof_Profile_new` * `ddog_prof_Profile_with_string_storage` * `ddog_prof_Profile_reset` The intention was that having it as an argument in `ddog_prof_Profile_serialize` was enough, and anyway almost everyone was passing in `null`s in the APIs above. I missed when suggesting in that PR that the `start_time` for serialize was the `start_time` for the next profile, not the one being serialized. In this PR I'm changing that behavior: the `start_time` argument to serialize now controls the time for the profile being serialized, allowing the profiling library to have exact control over this value. I've also removed the duration. [As can be seen in this github search](https://github.com/search?q=org%3ADataDog+ddog_prof_Profile_serialize&type=code) this is not expected to impact anyone: everyone's passing `NULL` for `start_time` and `duration` when calling serialize already. **Motivation:** Allow Ruby profiler to set the start_time of profiles. **Additional Notes:** N/A **How to test the change?** I've tested this with my experimental libdatadog 17 branch for Ruby.
Artifact Size Benchmark Reportaarch64-alpine-linux-musl
aarch64-unknown-linux-gnu
i686-alpine-linux-musl
i686-unknown-linux-gnu
libdatadog-x64-windows
libdatadog-x86-windows
x86_64-alpine-linux-musl
x86_64-unknown-linux-gnu
|
BenchmarksComparisonBenchmark execution time: 2025-03-27 17:37:25 Comparing candidate commit 788d9a6 in PR branch Found 0 performance improvements and 2 performance regressions! Performance is the same for 50 metrics, 2 unstable metrics. scenario:normalization/normalize_service/normalize_service/Data🐨dog🐶 繋がっ⛰てて
CandidateCandidate benchmark detailsGroup 1
Group 2
Group 3
Group 4
Group 5
Group 6
Group 7
Group 8
Group 9
Group 10
Group 11
Group 12
Group 13
BaselineOmitted due to size. |
profiling-ffi/src/profiles.rs
Outdated
Some(x) => Some(Duration::from_nanos((*x) as u64)), | ||
}; | ||
old_profile.serialize_into_compressed_pprof(end_time, duration) | ||
old_profile.serialize_into_compressed_pprof(end_time, None) |
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.
Does this function need to take a duration?
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.
I think PHP is using this, at least that's why it was added originally; I didn't check yet if that's still the case 👀
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.
I've checked it and PHP is still using it -- https://github.com/DataDog/dd-trace-php/blob/342ff3234879e8868633423c508407ef6eb84ef0/profiling/src/profiling/uploader.rs#L188 .
if let Some(start_time) = start_time { | ||
profile.set_start_time(start_time.into())?; | ||
} | ||
|
||
let old_profile = profile.reset_and_return_previous()?; | ||
|
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.
I find this clearer;
if let Some(start_time) = start_time { | |
profile.set_start_time(start_time.into())?; | |
} | |
let old_profile = profile.reset_and_return_previous()?; | |
let old_profile = profile.reset_and_return_previous()?; | |
if let Some(start_time) = start_time { | |
old_profile.set_start_time(start_time.into())?; | |
} |
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.
I missed this suggestion before the auto-merged kicked in, but I'll open a separate PR with it.
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.
Opened #987 with this change.
**What does this PR do?** This PR applies a suggestion from #963 (comment) to set the `start_time` after obtaining the old profile. This will hopefully make it more clear that the `start_time` is used for the old profile, not the new one. **Motivation:** Make code more readable. **Additional Notes:** N/A **How to test the change?** Existing test coverage should be enough to validate this change (for instance, the Ruby profiler test suite explicitly tests the timestamps on profiles).
What does this PR do?
In #926 we removed the
start_time
argument fromddog_prof_Profile_new
ddog_prof_Profile_with_string_storage
ddog_prof_Profile_reset
The intention was that having it as an argument in
ddog_prof_Profile_serialize
was enough, and anyway almost everyone was passing innull
s in the APIs above.I missed when suggesting in that PR that the
start_time
for serialize was thestart_time
for the next profile, not the one being serialized.In this PR I'm changing that behavior: the
start_time
argument to serialize now controls the time for the profile being serialized, allowing the profiling library to have exact control over this value.I've also removed the duration.
As can be seen in this github search this is not expected to impact anyone: everyone's passing
NULL
forstart_time
andduration
when calling serialize already.Motivation
Allow Ruby profiler to set the start_time of profiles.
Additional Notes
N/A
How to test the change?
I've tested this with my experimental libdatadog 17 branch for Ruby.