Skip to content
Merged
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 67 files
+4 −0 .github/CODEOWNERS
+53 −4 .github/workflows/release-proposal-dispatch.yml
+4 −1 .github/workflows/release-proposal-test.yml
+96 −0 AGENTS.md
+1 −0 CLAUDE.md
+22 −19 Cargo.lock
+1 −1 Cargo.toml
+26 −44 bin_tests/tests/crashtracker_bin_test.rs
+6 −1 datadog-ffe/Cargo.toml
+2 −0 datadog-ffe/src/lib.rs
+341 −0 datadog-ffe/src/telemetry/evaluation_metrics.rs
+362 −0 datadog-ffe/src/telemetry/exposures.rs
+16 −0 datadog-ffe/src/telemetry/mod.rs
+193 −2 datadog-sidecar-ffi/src/lib.rs
+1 −1 datadog-sidecar/Cargo.toml
+288 −0 datadog-sidecar/src/service/ffe_exposures_flusher.rs
+236 −0 datadog-sidecar/src/service/ffe_metrics_flusher.rs
+16 −0 datadog-sidecar/src/service/mod.rs
+270 −0 datadog-sidecar/src/service/sidecar_server.rs
+2 −0 datadog-sidecar/src/service/telemetry.rs
+44 −36 docs/RFCs/0011-crashtracker-structured-log-format-V1_X.md
+618 −0 docs/RFCs/artifacts/crashtracker-unified-runtime-stack-schema-v1_8.json
+1 −1 libdd-capabilities-impl/Cargo.toml
+12 −0 libdd-common/CHANGELOG.md
+1 −1 libdd-common/Cargo.toml
+2 −2 libdd-crashtracker/Cargo.toml
+9 −7 libdd-crashtracker/src/collector_windows/api.rs
+17 −17 libdd-crashtracker/src/crash_info/builder.rs
+71 −29 libdd-crashtracker/src/crash_info/error_data.rs
+9 −8 libdd-crashtracker/src/crash_info/errors_intake.rs
+2 −2 libdd-crashtracker/src/crash_info/mod.rs
+1 −1 libdd-crashtracker/src/crash_info/telemetry.rs
+6 −9 libdd-crashtracker/src/receiver/receive_report.rs
+1 −0 libdd-data-pipeline-ffi/Cargo.toml
+7 −2 libdd-data-pipeline-ffi/cbindgen.toml
+1 −0 libdd-data-pipeline-ffi/src/lib.rs
+22 −46 libdd-data-pipeline-ffi/src/response.rs
+1 −1 libdd-data-pipeline-ffi/src/trace_exporter.rs
+690 −0 libdd-data-pipeline-ffi/src/tracer.rs
+2 −2 libdd-data-pipeline/Cargo.toml
+3 −3 libdd-data-pipeline/src/otlp/exporter.rs
+63 −1 libdd-data-pipeline/src/trace_exporter/builder.rs
+361 −43 libdd-data-pipeline/src/trace_exporter/mod.rs
+36 −42 libdd-data-pipeline/src/trace_exporter/trace_serializer.rs
+11 −0 libdd-data-pipeline/tests/test_trace_exporter.rs
+1 −1 libdd-dogstatsd-client/Cargo.toml
+1 −1 libdd-http-client/Cargo.toml
+18 −0 libdd-library-config/CHANGELOG.md
+1 −1 libdd-library-config/Cargo.toml
+1 −1 libdd-profiling/Cargo.toml
+20 −0 libdd-sampling/CHANGELOG.md
+4 −4 libdd-sampling/Cargo.toml
+121 −2 libdd-sampling/src/sampling_rule_config.rs
+1 −1 libdd-shared-runtime/Cargo.toml
+1 −1 libdd-telemetry/Cargo.toml
+2 −2 libdd-trace-obfuscation/Cargo.toml
+2 −2 libdd-trace-stats/Cargo.toml
+1 −1 libdd-trace-stats/src/stats_exporter.rs
+21 −0 libdd-trace-utils/CHANGELOG.md
+2 −2 libdd-trace-utils/Cargo.toml
+235 −12 libdd-trace-utils/src/otlp_encoder/mapper.rs
+7 −7 libdd-trace-utils/src/send_data/mod.rs
+11 −15 libdd-trace-utils/src/send_with_retry/mod.rs
+1 −0 libdd-trace-utils/src/span/mod.rs
+468 −0 libdd-trace-utils/src/span/vec_map.rs
+1 −1 libdd-trace-utils/src/test_utils/datadog_test_agent.rs
+2 −2 libdd-tracer-flare/Cargo.toml
Loading