Skip to content
Open
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion libdatadog
Submodule libdatadog updated 81 files
+2 −0 .github/CODEOWNERS
+187 −395 .github/actions/Cargo.lock
+1 −1 .github/actions/ci-shared/Cargo.toml
+1 −1 .github/actions/clippy-annotation-reporter/Cargo.toml
+2 −4 .github/actions/clippy-annotation-reporter/action.yml
+1 −1 .github/actions/crates-reporter/Cargo.toml
+2 −5 .github/actions/crates-reporter/action.yml
+13 −0 .github/actions/rust-toolchain.toml
+5 −3 .github/workflows/check-crypto-providers.yml
+2 −2 .github/workflows/clippy-annotation-reporter.yml
+10 −1 .github/workflows/coverage.yml
+8 −3 .github/workflows/fuzz.yml
+35 −8 .github/workflows/lint.yml
+9 −3 .github/workflows/miri.yml
+2 −0 .github/workflows/pr-metadata-docs-and-deps.yml
+12 −2 .github/workflows/pr-title-semver-check.yml
+5 −2 .github/workflows/release-proposal-dispatch.yml
+11 −2 .github/workflows/rustfmt-auto.yml
+5 −13 .github/workflows/test-ffi.yml
+6 −13 .github/workflows/test.yml
+5 −3 .github/workflows/verify-proto-files.yml
+2 −1 .gitlab/fuzz.yml
+2 −1 .pre-commit-config.yaml
+18 −18 Cargo.lock
+2 −2 Cargo.toml
+1 −1 README.md
+5 −0 builder/src/arch/apple.rs
+5 −0 builder/src/arch/linux.rs
+50 −0 builder/src/arch/mod.rs
+5 −0 builder/src/arch/musl.rs
+15 −4 builder/src/arch/windows.rs
+8 −5 builder/src/builder.rs
+6 −38 builder/src/profiling.rs
+4 −4 datadog-ipc/src/shm_stats.rs
+118 −82 datadog-sidecar-ffi/src/span.rs
+6 −4 datadog-sidecar-ffi/tests/span.rs
+1 −1 datadog-sidecar/Cargo.toml
+1 −1 libdd-alloc/src/utils.rs
+5 −6 libdd-crashtracker/src/collector/crash_handler.rs
+14 −0 libdd-data-pipeline/CHANGELOG.md
+4 −4 libdd-data-pipeline/Cargo.toml
+1 −1 libdd-data-pipeline/examples/send-traces-with-stats.rs
+3 −1 libdd-data-pipeline/src/trace_exporter/builder.rs
+4 −38 libdd-data-pipeline/src/trace_exporter/mod.rs
+0 −20 libdd-data-pipeline/src/trace_exporter/stats.rs
+50 −22 libdd-data-pipeline/src/trace_exporter/trace_serializer.rs
+52 −0 libdd-data-pipeline/tests/snapshots/compare_exporter_v04_to_v1_trace_snapshot_test.json
+74 −0 libdd-data-pipeline/tests/test_trace_exporter.rs
+67 −61 libdd-otel-thread-ctx/src/lib.rs
+1 −1 libdd-profiling/src/internal/profile/interning_api/mod.rs
+1 −1 libdd-sampling/Cargo.toml
+13 −12 libdd-sampling/benches/sampling_bench.rs
+15 −14 libdd-sampling/src/v04_span.rs
+8 −0 libdd-trace-obfuscation/CHANGELOG.md
+2 −2 libdd-trace-obfuscation/Cargo.toml
+1 −1 libdd-trace-obfuscation/src/sql.rs
+9 −0 libdd-trace-stats/CHANGELOG.md
+3 −3 libdd-trace-stats/Cargo.toml
+1 −1 libdd-trace-stats/benches/span_concentrator_bench.rs
+44 −39 libdd-trace-stats/src/span_concentrator/aggregation.rs
+24 −23 libdd-trace-stats/src/span_concentrator/tests.rs
+21 −1 libdd-trace-stats/src/stats_exporter.rs
+9 −0 libdd-trace-utils/CHANGELOG.md
+1 −1 libdd-trace-utils/Cargo.toml
+1 −0 libdd-trace-utils/src/lib.rs
+23 −0 libdd-trace-utils/src/msgpack_encoder/mod.rs
+8 −29 libdd-trace-utils/src/msgpack_encoder/v04/mod.rs
+858 −0 libdd-trace-utils/src/msgpack_encoder/v1/mod.rs
+394 −0 libdd-trace-utils/src/msgpack_encoder/v1/span_v04.rs
+1 −1 libdd-trace-utils/src/send_data/mod.rs
+8 −8 libdd-trace-utils/src/span/mod.rs
+25 −17 libdd-trace-utils/src/span/v04/mod.rs
+44 −0 libdd-trace-utils/src/tracer_metadata.rs
+5 −0 libdd-trace-utils/src/tracer_payload.rs
+1 −1 libdd-tracer-flare/Cargo.toml
+10 −0 nightly-toolchain.toml
+4 −0 rust-toolchain.toml
+1 −1 spawn_worker/Cargo.toml
+27 −1 tools/src/bin/ffi_test.rs
+0 −89 windows/build-artifacts.ps1
+21 −23 windows/libdatadog.csproj
Loading