Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
44a0728
chore: add rustix dependency
yannham Feb 17, 2026
9acff87
feat: add process context publication
yannham Feb 17, 2026
93fb32f
test: add reading test for process context
yannham Feb 20, 2026
63e41f7
chore: review suggestion for otel process ctxt
yannham Feb 23, 2026
0a3ba1f
chore: fix clippy warning
yannham Feb 23, 2026
f285059
chore: add missing feature to rustix dep
yannham Feb 23, 2026
c8cb612
test: fix process context sharing test
yannham Feb 23, 2026
e4a7e86
test: free mapping in otel process ctxt test
yannham Feb 23, 2026
63bfe33
chore: guard rustix dependency to be linux-only
yannham Feb 23, 2026
11ff38d
chore: remove unused field in otel process ctxt
yannham Feb 23, 2026
bb80f43
chore: unify the signature of update and publish
yannham Feb 23, 2026
f3b9cef
fix: fix typo in otel_process_ctxt comment
yannham Mar 2, 2026
c42b971
chore: otel_process_ctxt -> otel_process_ctx
yannham Mar 2, 2026
555434d
chore: move consts into linux-specific module
yannham Mar 2, 2026
2412e1e
chore: fix incorrect code comment
yannham Mar 2, 2026
4045856
chore: extra doc about naming in otel process ctx
yannham Mar 2, 2026
11ab3fc
chore: fix outdated comment
yannham Mar 2, 2026
5605fdd
chore: updated outdated safety comment
yannham Mar 2, 2026
7427943
chore: drop outdated mention in comment
yannham Mar 2, 2026
7b0aef2
chore: remove superfluous comment
yannham Mar 2, 2026
faff61c
chore: fix typo in comment
yannham Mar 2, 2026
f184f02
fix: proper ordering for context writer
yannham Mar 2, 2026
0af80fa
feat: shrink mapping size to the header size
yannham Mar 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions libdd-library-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ tempfile = { version = "3.3" }

[target.'cfg(unix)'.dependencies]
memfd = { version = "0.6" }
rustix = { version = "1.1.3", features = ["param", "mm", "process", "fs"] }
1 change: 1 addition & 0 deletions libdd-library-config/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 2021-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0
pub mod otel_process_ctx;
pub mod tracer_metadata;

use std::borrow::Cow;
Expand Down
Loading
Loading