Skip to content

[otel-agent] Use zstd compression for all signals - #52758

Draft
truthbk wants to merge 3 commits into
mainfrom
jaime.fullaondo/ddot-zstd-all-signals
Draft

[otel-agent] Use zstd compression for all signals#52758
truthbk wants to merge 3 commits into
mainfrom
jaime.fullaondo/ddot-zstd-all-signals

Conversation

@truthbk

@truthbk truthbk commented Jun 25, 2026

Copy link
Copy Markdown
Member

What does this PR do?

Makes the DDOT collector (otel-agent) compress every signal with zstd, replacing the previous per-signal mix (zlib for metrics, gzip for traces, zstd for logs):

  • Metrics: use the config-driven metrics compressor (metricscompression/fx) instead of the hardcoded zlib module; defaults to zstd level 3, overridable via serializer_zstd_compressor_level.
  • Logs: pin zstd and default logs_config.zstd_compression_level to 3 (overridable).
  • Traces: use the existing fx-zstd module (zstd at BestSpeed); the trace level is intentionally fixed.
  • Host metadata: rides the same serializer compressor as metrics (no dedicated knob), so it becomes zstd automatically.

Also adds tests that guard against future per-signal compression divergence.

Motivation

The DDOT exporter used a different compression algorithm per signal, which is inconsistent and harder to reason about. Standardizing on zstd gives a consistent algorithm across metrics/traces/logs and a better compression ratio, with the level configurable per signal.

Describe how you validated your changes

  • dda inv otel-agent.build passes; dda inv linter.go0 issues on changed packages; gofmt clean.
  • Unit (cmd/otel-agent/config): asserts metrics and logs resolve to the same algorithm (zstd) at level 3, that the level stays env-overridable, and that host metadata uses that same serializer compressor (so it is zstd too).
  • Integration (comp/otelcol/otlp/integrationtest): now decodes trace payloads as zstd — verifies traces ship valid zstd end-to-end. Passes locally (dda inv otel-agent.integration-test).
  • E2E (TestOTelAgentComplete/TestOTLPCompression): asserts metrics, traces, and logs reach fakeintake with Content-Encoding: zstd (requires the e2e infra to run).

Additional Notes

  • Scope is the standalone otel-agent. The core Agent, trace-agent, host-profiler, and OSS exporter are unaffected — they use their own compression modules (metricscompression/fx, fx-zstd, fx-gzip, fx-otel respectively).
  • The v2 metrics intake is preserved (use_v3_api.series.enabled stays false); moving series to v3 is a separate effort. ⚠️ Reviewers: please confirm the v2 series intake (/api/v2/series) accepts Content-Encoding: zstd — the core Agent uses zstd→v3 for series by default, so this exact combination isn't exercised today. The new e2e test validates it against fakeintake.
  • Exhaustive compression coverage (all the DD exporter's submission clients): after this change, every active intake submission in the otel-agent is zstd — metrics (series/sketches), host metadata, logs, tracesexcept APM stats, which stays gzip (hardcoded in pkg/trace/writer/stats.go, shared with the trace-agent; out of scope here, separate conversation). The orchestrator/K8s-objects sub-exporter already uses zstd and is disabled by default. Internal exporter telemetry (metricsclient, COAT/gateway gauges) is scraped Prometheus/OTel-meter telemetry, not an intake submission.

🤖 Generated with Claude Code

@github-actions

Copy link
Copy Markdown
Contributor

@codex review

@dd-octo-sts dd-octo-sts Bot added internal Identify a non-fork PR team/agent-devx labels Jun 25, 2026
@github-actions github-actions Bot added the medium review PR review might take time label Jun 25, 2026
@truthbk
truthbk force-pushed the jaime.fullaondo/ddot-zstd-all-signals branch from 7a7b1a1 to 044b22b Compare June 25, 2026 00:08

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 7a7b1a136d

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread cmd/otel-agent/config/agent_config.go Outdated
// Pin zstd for logs (matching metrics/traces) with an overridable level-3 default.
// compression_kind is set explicitly so a configured additional_endpoints can't
// silently fall back to gzip; zstd_compression_level is the level used for zstd.
pkgconfig.Set("logs_config.compression_kind", pkgconfigsetup.DefaultLogCompressionKind, pkgconfigmodel.SourceDefault)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Use a non-default source for log compression kind

When DDOT runs with logs_config.additional_endpoints configured (for example via DD_LOGS_CONFIG_ADDITIONAL_ENDPOINTS or synced core config), this SourceDefault value still makes LogsConfigKeys.compressionKind() treat logs_config.compression_kind as not configured, so it triggers the additional-endpoints compatibility fallback to gzip in comp/logs/agent/config/config_keys.go. That means logs stop using zstd in exactly the additional-endpoint case the new comment says this should prevent; set the DDOT zstd pin at a non-default source that still allows user overrides if needed.

Useful? React with 👍 / 👎.

@github-actions

Copy link
Copy Markdown
Contributor

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 044b22b1f9

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread cmd/otel-agent/config/agent_config.go Outdated
// Pin zstd for logs (matching metrics/traces) with an overridable level-3 default.
// compression_kind is set explicitly so a configured additional_endpoints can't
// silently fall back to gzip; zstd_compression_level is the level used for zstd.
pkgconfig.Set("logs_config.compression_kind", pkgconfigsetup.DefaultLogCompressionKind, pkgconfigmodel.SourceDefault)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Mark the log compressor kind as configured

When logs_config.additional_endpoints is present and no explicit logs_config.compression_kind is provided, LogsConfigKeys.compressionKind() falls back to gzip unless IsConfigured("logs_config.compression_kind") is true. This assignment uses SourceDefault, which IsConfigured ignores, so DDOT logs with additional endpoints still use gzip even though this change intends to pin logs to zstd and the new E2E does not cover that configuration. Set this at a non-default/runtime source or adjust the fallback so additional-endpoint setups are covered.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch — fixed in e69c344. I removed the logs_config.compression_kind set entirely: as you noted, a SourceDefault value isn't IsConfigured(), so it could never prevent the additional_endpoints→gzip fallback. Logs already default to zstd via the registered DefaultLogCompressionKind, and that gzip fallback for additional endpoints is intentional (third-party endpoint compatibility), so we don't force it.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correction to my earlier reply — I've reversed this fix in af1aa56 after looking at how the core forwarder and the logs pipeline actually handle additional_endpoints:

  • The gzip fallback (PR [AGNTLOG-9] Add compression config for different pipelines  #35625) is a conservative default for non-Datadog intakes (its own release note: "compatibility issues with non-Datadog intakes"), not a technical limitation. It triggers on the mere presence of additional_endpoints.
  • For DDOT, additional_endpoints are other Datadog endpoints (multi-region / dual-ship / MRF), which accept zstd. The metrics forwarder already fans a single zstd-compressed payload to all domains (main + additional), and the logs pipeline likewise uses one compressor for all destinations (pipeline.go builds it from endpoints.Main.CompressionKind).

So instead of accepting the gzip fallback, I now pin logs_config.compression_kind=zstd at SourceFile so IsConfigured() is true and the fallback is bypassed — every log endpoint ships zstd, consistent with metrics. It stays overridable via DD_LOGS_CONFIG_COMPRESSION_KIND=gzip for the rare case of a genuinely non-Datadog log endpoint. Added a unit test asserting logs_config.compression_kind is IsConfigured(). Thanks for the nudge — your original flag was right.

// compression_kind is set explicitly so a configured additional_endpoints can't
// silently fall back to gzip; zstd_compression_level is the level used for zstd.
pkgconfig.Set("logs_config.compression_kind", pkgconfigsetup.DefaultLogCompressionKind, pkgconfigmodel.SourceDefault)
pkgconfig.Set("logs_config.zstd_compression_level", 3, pkgconfigmodel.SourceDefault)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Preserve configured log compression levels

If a user sets the existing OTel Datadog exporter logs.compression_level, ddc.Logs.CompressionLevel is still written to logs_config.compression_level, but after this line forces zstd the logs pipeline reads logs_config.zstd_compression_level instead. That means configured log compression levels that were honored with gzip are silently ignored and logs always use the new zstd default level unless users know to set a Datadog-Agent-specific zstd key. Translate the configured level to the zstd key when zstd is selected, or otherwise document/remove the now-ignored mapping.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressed in e69c344. The exporter's logs.compression_level is a gzip level (0–9, per its own field docs), so I deliberately did not repurpose it as a zstd level. Instead I documented that it only applies when the active compressor is gzip; under the zstd default the level is logs_config.zstd_compression_level (default 3, overridable via DD_LOGS_CONFIG_ZSTD_COMPRESSION_LEVEL). Note this isn't a regression introduced here — DDOT logs already defaulted to zstd before this PR (the registered default), so logs.compression_level was already inert under the default kind; this change just makes the behaviour explicit and documented.

@dd-octo-sts

dd-octo-sts Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

Go Package Import Differences

Baseline: 711b8af
Comparison: 7fb2b2c

binaryosarchchange
otel-agentlinuxamd64
+3, -2
+github.com/DataDog/datadog-agent/comp/serializer/metricscompression/fx
-github.com/DataDog/datadog-agent/comp/trace/compression/fx-gzip
-github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip
+github.com/DataDog/datadog-agent/comp/trace/compression/fx-zstd
+github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd
otel-agentlinuxarm64
+3, -2
+github.com/DataDog/datadog-agent/comp/serializer/metricscompression/fx
-github.com/DataDog/datadog-agent/comp/trace/compression/fx-gzip
-github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip
+github.com/DataDog/datadog-agent/comp/trace/compression/fx-zstd
+github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd

@datadog-datadog-prod-us1-2

datadog-datadog-prod-us1-2 Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

🎯 Code Coverage (details)
Patch Coverage: 80.00%
Overall Coverage: 52.21% (+0.05%)

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: 7fb2b2c | Docs | Datadog PR Page | Give us feedback!

@dd-octo-sts

dd-octo-sts Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

Files inventory check summary

File checks results against ancestor 711b8afd:

Results for datadog-agent_7.83.0~devel.git.641.7fb2b2c.pipeline.129819916-1_amd64.deb:

No change detected

Results for datadog-iot-agent_7.83.0~devel.git.641.7fb2b2c.pipeline.129819916-1_amd64.deb:

No change detected

@dd-octo-sts

dd-octo-sts Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

Static quality checks

✅ Please find below the results from static quality gates
Comparison made with ancestor 711b8af
📊 Static Quality Gates Dashboard
🔗 SQG Job

33 successful checks with minimal change (< 2 KiB)
Quality gate Current Size
agent_deb_amd64 757.778 MiB
agent_deb_amd64_fips 711.261 MiB
agent_heroku_amd64 312.140 MiB
agent_msi 639.454 MiB
agent_rpm_amd64 757.761 MiB
agent_rpm_amd64_fips 711.244 MiB
agent_rpm_arm64 733.849 MiB
agent_rpm_arm64_fips 690.611 MiB
agent_suse_amd64 757.761 MiB
agent_suse_amd64_fips 711.244 MiB
agent_suse_arm64 733.849 MiB
agent_suse_arm64_fips 690.611 MiB
docker_agent_amd64 816.440 MiB
docker_agent_arm64 817.583 MiB
docker_agent_jmx_amd64 1007.338 MiB
docker_agent_jmx_arm64 997.133 MiB
docker_cluster_agent_amd64 210.141 MiB
docker_cluster_agent_arm64 223.204 MiB
docker_cws_instrumentation_amd64 7.439 MiB
docker_cws_instrumentation_arm64 6.877 MiB
docker_dogstatsd_amd64 39.428 MiB
docker_dogstatsd_arm64 37.560 MiB
docker_host_profiler_amd64 305.753 MiB
docker_host_profiler_arm64 317.049 MiB
dogstatsd_deb_amd64 30.169 MiB
dogstatsd_deb_arm64 28.197 MiB
dogstatsd_rpm_amd64 30.169 MiB
dogstatsd_suse_amd64 30.169 MiB
iot_agent_deb_amd64 46.373 MiB
iot_agent_deb_arm64 43.045 MiB
iot_agent_deb_armhf 43.816 MiB
iot_agent_rpm_amd64 46.373 MiB
iot_agent_suse_amd64 46.372 MiB

@cit-pr-commenter-54b7da

cit-pr-commenter-54b7da Bot commented Jun 25, 2026

Copy link
Copy Markdown

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: 5adf8e5f-28ed-403a-a9dc-6356a9e01a1a

Baseline: 711b8af
Comparison: 7fb2b2c
Diff

Optimization Goals: ✅ No significant changes detected

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_security_idle memory utilization +0.51 [+0.45, +0.57] 1 Logs bounds checks dashboard
quality_gate_idle memory utilization +0.32 [+0.28, +0.36] 1 Logs bounds checks dashboard
quality_gate_idle_all_features memory utilization +0.29 [+0.26, +0.32] 1 Logs bounds checks dashboard
quality_gate_security_mean_fs_load memory utilization +0.19 [+0.15, +0.23] 1 Logs bounds checks dashboard
quality_gate_security_no_fs_load memory utilization -0.02 [-0.12, +0.07] 1 Logs bounds checks dashboard
quality_gate_logs % cpu utilization -0.13 [-0.98, +0.72] 1 Logs bounds checks dashboard
quality_gate_private_action_runner memory utilization -0.32 [-0.45, -0.20] 1 Logs bounds checks dashboard
quality_gate_metrics_logs memory utilization -0.35 [-0.61, -0.10] 1 Logs bounds checks dashboard

Bounds Checks: ✅ Passed

perf experiment bounds_check_name replicates_passed observed_value links
quality_gate_idle intake_connections 10/10 3 ≤ 4 bounds checks dashboard
quality_gate_idle memory_usage 10/10 148.45MiB ≤ 154MiB bounds checks dashboard
quality_gate_idle total_bytes_received 10/10 735.27KiB ≤ 819.20KiB bounds checks dashboard
quality_gate_idle_all_features intake_connections 10/10 3 ≤ 4 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 496.56MiB ≤ 512MiB bounds checks dashboard
quality_gate_idle_all_features total_bytes_received 10/10 1.13MiB ≤ 1.25MiB bounds checks dashboard
quality_gate_logs intake_connections 10/10 4 ≤ 6 bounds checks dashboard
quality_gate_logs memory_usage 10/10 185.72MiB ≤ 195MiB bounds checks dashboard
quality_gate_logs missed_bytes 10/10 0B = 0B bounds checks dashboard
quality_gate_logs total_bytes_received 10/10 264.02MiB ≤ 292MiB bounds checks dashboard
quality_gate_metrics_logs cpu_usage 10/10 355.41 ≤ 2000 bounds checks dashboard
quality_gate_metrics_logs intake_connections 10/10 3 ≤ 6 bounds checks dashboard
quality_gate_metrics_logs memory_usage 10/10 378.36MiB ≤ 430MiB bounds checks dashboard
quality_gate_metrics_logs missed_bytes 10/10 0B = 0B bounds checks dashboard
quality_gate_metrics_logs total_bytes_received 10/10 0.94GiB ≤ 1.04GiB bounds checks dashboard
quality_gate_private_action_runner memory_usage 10/10 71.01MiB ≤ 75MiB bounds checks dashboard
quality_gate_security_idle cpu_usage 10/10 27.73 ≤ 100 bounds checks dashboard
quality_gate_security_idle memory_usage 10/10 306.23MiB ≤ 330MiB bounds checks dashboard
quality_gate_security_mean_fs_load cpu_usage 10/10 71.13 ≤ 200 bounds checks dashboard
quality_gate_security_mean_fs_load memory_usage 10/10 281.92MiB ≤ 310MiB bounds checks dashboard
quality_gate_security_no_fs_load cpu_usage 10/10 21.38 ≤ 100 bounds checks dashboard
quality_gate_security_no_fs_load memory_usage 10/10 283.35MiB ≤ 320MiB bounds checks dashboard

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

Replicate Execution Details

We run multiple replicates for each experiment/variant. However, we allow replicates to be automatically retried if there are any failures, up to 8 times, at which point the replicate is marked dead and we are unable to run analysis for the entire experiment. We call each of these attempts at running replicates a replicate execution. This section lists all replicate executions that failed due to the target crashing or being oom killed.

Note: In the below tables we bucket failures by experiment, variant, and failure type. For each of these buckets we list out the replicate indexes that failed with an annotation signifying how many times said replicate failed with the given failure mode. In the below example the baseline variant of the experiment named experiment_with_failures had two replicates that failed by oom kills. Replicate 0, which failed 8 executions, and replicate 1 which failed 6 executions, all with the same failure mode.

Experiment Variant Replicates Failure Logs Debug Dashboard
experiment_with_failures baseline 0 (x8) 1 (x6) Oom killed Debug Dashboard

The debug dashboard links will take you to a debugging dashboard specifically designed to investigate replicate execution failures.

❌ Retried Profiling Replicate Execution Failures (ddprof)

Note: Profiling replicas may still be executing. See the debug dashboard for up to date status.

Experiment Variant Replicates Failure Debug Dashboard
quality_gate_idle_all_features baseline 10 Oom killed Debug Dashboard
quality_gate_idle_all_features comparison 10 Oom killed Debug Dashboard
quality_gate_logs baseline 10 Oom killed Debug Dashboard
quality_gate_logs comparison 10 Oom killed Debug Dashboard
quality_gate_metrics_logs baseline 10 Oom killed Debug Dashboard

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_metrics_logs, bounds check total_bytes_received: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check missed_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_security_mean_fs_load, bounds check cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_security_mean_fs_load, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check total_bytes_received: 10/10 replicas passed. Gate passed.
  • quality_gate_security_idle, bounds check cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_security_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check total_bytes_received: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_security_no_fs_load, bounds check cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_security_no_fs_load, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check missed_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check total_bytes_received: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_private_action_runner, bounds check memory_usage: 10/10 replicas passed. Gate passed.

@truthbk
truthbk force-pushed the jaime.fullaondo/ddot-zstd-all-signals branch 2 times, most recently from a5055d3 to e69c344 Compare June 26, 2026 12:28
The DDOT collector (otel-agent) previously used a different compressor per
signal: zlib for metrics, gzip for traces, and zstd for logs. Switch all
signals to zstd for a consistent compression algorithm.

- Metrics: use the config-driven metrics compressor (metricscompression/fx)
  instead of the hardcoded zlib module; defaults to zstd level 3, overridable
  via serializer_zstd_compressor_level.
- Logs: pin zstd and default zstd_compression_level to 3 (overridable via
  logs_config.zstd_compression_level).
- Traces: use the existing fx-zstd module (zstd at BestSpeed); the trace
  compression level is intentionally fixed.

The v2 metrics intake is preserved (use_v3_api.series.enabled stays false);
moving series to v3 is a separate effort. Changes are scoped to cmd/otel-agent
and do not affect the core Agent, trace-agent, host-profiler, or OSS exporter.

Tests:
- Unit guard that metrics and logs resolve to the same algorithm and the
  level stays overridable.
- Integration test verifies traces ship valid zstd.
- E2E test asserts metrics, traces, and logs reach fakeintake as zstd.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@truthbk
truthbk force-pushed the jaime.fullaondo/ddot-zstd-all-signals branch from e69c344 to af1aa56 Compare June 26, 2026 14:23
@dd-octo-sts

dd-octo-sts Bot commented Jul 26, 2026

Copy link
Copy Markdown
Contributor

This pull request has been automatically marked as stale because it has not had activity in the past 15 days.

It will be closed in 30 days if no further activity occurs. If this pull request is still relevant, adding a comment or pushing new commits will keep it open. Also, you can always reopen the pull request if you missed the window.

Thank you for your contributions!

@dd-octo-sts dd-octo-sts Bot added the stale label Jul 26, 2026
truthbk and others added 2 commits August 6, 2026 18:18
Merging main surfaced two breakages (the diff was clean, but referenced
symbols/deps changed underneath it):

- pkgconfigsetup.DefaultCompressorKind / DefaultLogCompressionKind moved
  to the pkg/config/setup/constants package; reference them there.
- Regenerate BUILD.bazel for the fx-otel->fx and fx-gzip->fx-zstd import
  swaps and the new DataDog/zstd test dependency (gazelle).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

internal Identify a non-fork PR medium review PR review might take time stale team/agent-build team/agent-devx

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant