-
Notifications
You must be signed in to change notification settings - Fork 13
[crashtracker] implement RFC4 #1037
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
base: main
Are you sure you want to change the base?
Conversation
…adog into sanchda/crashtracker_rfc4
BenchmarksComparisonBenchmark execution time: 2025-04-25 14:23:51 Comparing candidate commit e987750 in PR branch Found 0 performance improvements and 12 performance regressions! Performance is the same for 40 metrics, 2 unstable metrics. scenario:credit_card/is_card_number/ 3782-8224-6310-005
scenario:credit_card/is_card_number/ 378282246310005
scenario:credit_card/is_card_number/378282246310005
scenario:normalization/normalize_name/normalize_name/bad-name
scenario:normalization/normalize_name/normalize_name/good
scenario:normalization/normalize_service/normalize_service/A0000000000000000000000000000000000000000000000000...
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. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1037 +/- ##
==========================================
+ Coverage 71.16% 71.26% +0.10%
==========================================
Files 329 330 +1
Lines 49192 49241 +49
==========================================
+ Hits 35006 35093 +87
+ Misses 14186 14148 -38
🚀 New features to boost your workflow:
|
Artifact Size Benchmark Reportaarch64-alpine-linux-musl
aarch64-unknown-linux-gnu
libdatadog-x64-windows
libdatadog-x86-windows
x86_64-alpine-linux-musl
x86_64-unknown-linux-gnu
|
This patch adjusts the overall structure for the receiver and the collector * the thing that used to be called WatchedProcess is now a ProcessHandle * a Receiver and a Collector are wrappers over ProcessHandles * lifetimes (e.g., `finish()`) are managed through the ProcessHandle * changes some of the names (e.g., spawn* to indicate a method creates a new process)
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
This reorganizes the crashtracker data flow in accordance with RFC4
One noteworthy change to the tests is that the sigchld tests now write a complete file instead of doing a write-append. I think this is fine and expected, but maybe it should be thought about a bit.