Skip to content

Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1#52520

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x
Open

Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1#52520
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x

Conversation

@renovate

@renovate renovate Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/DataDog/dd-trace-go/contrib/net/http/v2 v2.2.3v2.9.1 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

DataDog/dd-trace-go (github.com/DataDog/dd-trace-go/contrib/net/http/v2)

v2.9.1

Compare Source

Application Performance Monitoring (APM)
Application Security Management (ASM)
CI Visibility

Full Changelog: DataDog/dd-trace-go@v2.9.0...v2.9.1

v2.9.0

Compare Source

Summary

Application Performance Monitoring (APM)
twmb/franz-go integration

Adds a new contrib package providing tracing for the twmb/franz-go Kafka client. #​4250

Trace context propagation hardening

Adds validation and explicit limits on incoming trace context headers:

  • Baggage extraction enforces per-item and total byte limits. #​4720
  • dd= list-entries over 256 bytes are dropped from incoming tracestate. #​4721
  • x-datadog-tags extraction uses the configurable MaxTagsHeaderLen. #​4727
Service name origin signaling

Adds svc.user/svc.auto process tags so consumers can distinguish whether a service name was user-configured vs. auto-detected. #​4725

Application Security Management (ASM)
RFC-1012 ASM tags, metrics, and logs consolidation

Closes remaining gaps in the RFC-1012 ASM observability consolidation effort across tags, metrics, and logs. #​4708

LLM Observability
Multi-run experiments

Adds support for running LLM evaluation experiments across multiple iterations. #​4660

FlushSync API

Adds an internal FlushSync capability for forcing synchronous flush of LLM Observability data — useful for tests and short-lived processes. #​4695

Profiling
gzip-compressed profile uploads

The profiler now supports gzip compression mode for profile payloads. #​4696 #​4697

CI Visibility

Performance and reliability improvements across the board: caching for test-metadata / impacted-test decisions / CODEOWNERS lookups, hardening of Go retry edge cases and parallel-test safety, and reduced overhead in the test wrapper. See the CI Visibility section below for the full list.

What's Changed

Application Performance Monitoring (APM)
Application Security Management (ASM)
CI Visibility
LLM Observability
Profiling
General

New Contributors

Full Changelog: DataDog/dd-trace-go@v2.8.0...v2.9.0

v2.8.2

Compare Source

What's Changed

General
  • fix(ddtrace/tracer): wire version on aggregation key when adding a span to client-side stats by @​darccio in #​4734

Full Changelog: DataDog/dd-trace-go@v2.8.1...v2.8.2

v2.8.1

Compare Source

Application Performance Monitoring (APM)

Full Changelog: DataDog/dd-trace-go@v2.8.0...v2.8.1

v2.8.0

Compare Source

Summary

New integrations. Two new integrations land in this release: Azure API Management (APIM) callout processor for security (#​4620), and twmb/franz-go for Kafka (#​4250).

Data Streams Monitoring. All three major Kafka integrations — confluent-kafka-go (#​4470), segmentio/kafka-go (#​4477), and Sarama (#​4560) — now attach kafka_cluster_id for cluster-level visibility. TrackDataStreamsTransaction also gains span tagging and custom timestamp support (#​4499).

OpenTelemetry (OTel) and OTLP. The tracer can now export traces directly via the OpenTelemetry Protocol (OTLP), bypassing the Datadog Agent entirely (#​4600, #​4583). OTel process context v2 (OTLP proto format) is supported (#​4478), and the parentbased_always_on sampler works in OTLP mode (#​4567).

Large Language Model (LLM) Observability. Prompt tracking is now available for LLMObs spans (#​4608). Experiment scope propagates from APM baggage into spans automatically (#​4651).

Profiler. An experimental goroutine leak profile is available as opt-in (#​4420). The goroutine wait profile type has been removed — this is a breaking change for anyone using it explicitly (#​4589).

HTTP and tracing. A new environment variable DD_TRACE_HTTP_URL_QUERY_STRING_ALLOWLIST lets you whitelist query string parameters to keep unredacted (#​4562). A new tracer.StartSpanFromPropagatedContext API simplifies span creation from propagated contexts (#​4492). AWS EventBridge max payload size is bumped to 1 MB (#​4458). Envoy Service Extensions integration gains Unix Domain Socket (UDS) support (#​4463).

OpenFeature. Flag evaluation metrics now emit via OTel Metrics (#​4489), with allocation key tagging (#​4515) and Remote Configuration (RC) integration via FFE_FLAGS subscription at tracer startup (#​4495).

Bug fixes. gorm now respects DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED (#​4618). Redis and Valkey pipeline commands are joined with newlines, fixing agent obfuscation (#​4593). A race condition in HTTP client trace timings is resolved (#​4591). AppSec block responses now include a correct Content-Length header (#​4496), and spurious Remote Configuration errors are silenced when RC is disabled (#​4612). ContextWithSpan no longer panics on nil context (#​4313). The OTel bridge preserves keep/drop sampling decisions for unsampled spans (#​4631). User-provided DogStatsD addresses now correctly take priority over defaults (#​4575).

Performance. Trace ID hex encoding is cached (#​4481), the span metadata map is preallocated (#​4541), and locking is removed from both sampling priority access (#​4546) and the internal logger (#​4547) — reducing allocations and contention on hot paths.

CI Visibility. Bazel offline cache and payload-file modes are supported (#​4503). Known test pagination is implemented for large test suites (#​4509).

What's Changed

Application Performance Monitoring (APM)
Application Security Management (ASM)
  • fix(appsec): explicitly set Content-Length header in block request handler by @​RomainMuller in #​4496
  • fix(appsec): silence spurious errors when DD_REMOTE_CONFIGURATION_ENABLED=false by @​darccio in #​4612
CI Visibility
Data Streams Monitoring
Feature flags
LLM Observability
Profiling
General

New Contributors

Full Changelog: DataDog/dd-trace-go@v2.7.0...v2.8.0

v2.7.4

Compare Source

What's Changed

General

Full Changelog: DataDog/dd-trace-go@v2.7.3...v2.7.4

v2.7.3

Compare Source

Application Performance Monitoring (APM)
  • feat(contrib/valkey-io): bump valkey-go and add SetOnInvalidations wrapper by @​Scorfly in #​4657
  • feat(contrib/redis/rueidis): add SetOnInvalidations to dedicatedClient by @​darccio in #​4659

Full Changelog: DataDog/dd-trace-go@v2.7.2...v2.7.3

v2.7.2

Compare Source

What's Changed

Application Performance Monitoring (APM)
  • fix(tracer): preserve keep/drop possibility for OTel bridge on unsampled spans
    by @​genesor in [#​4631](http

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Paris)

  • Branch creation
    • At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
    • Only on Sunday and Saturday (* * * * 0,6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added changelog/no-changelog No changelog entry needed dependencies PRs that bump a dependency dependencies-go PRs that bump a go dependency qa/no-code-change No code change in Agent code requiring validation labels Jun 20, 2026
@renovate

renovate Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: pkg/dyninst/testprogs/progs/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 39 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.23.1 -> 1.25.0
github.com/DataDog/dd-trace-go/v2 v2.2.3 -> v2.9.1
github.com/DataDog/datadog-agent/comp/core/tagger/origindetection v0.67.0 -> v0.77.0
github.com/DataDog/datadog-agent/pkg/obfuscate v0.67.0 -> v0.77.0
github.com/DataDog/datadog-agent/pkg/proto v0.67.0 -> v0.77.0
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.69.0 -> v0.77.0
github.com/DataDog/datadog-agent/pkg/trace v0.67.0 -> v0.77.0
github.com/DataDog/go-libddwaf/v4 v4.3.2 -> v4.9.0
github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20250721125240-fdf1ef85b633 -> v0.0.4-0.20260217080614-b0f4edc38a6d
github.com/DataDog/go-sqllexer v0.1.6 -> v0.1.13
github.com/DataDog/sketches-go v1.4.7 -> v1.4.8
github.com/ebitengine/purego v0.8.4 -> v0.10.0
github.com/go-viper/mapstructure/v2 v2.3.0 -> v2.5.0
github.com/hashicorp/go-version v1.7.0 -> v1.8.0
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c -> v1.2.0
github.com/secure-systems-lab/go-securesystemslib v0.9.0 -> v0.10.0
github.com/shirou/gopsutil/v4 v4.25.5 -> v4.26.2
github.com/tinylib/msgp v1.2.5 -> v1.6.3
github.com/tklauser/go-sysconf v0.3.15 -> v0.3.16
github.com/tklauser/numcpus v0.10.0 -> v0.11.0
go.opentelemetry.io/auto/sdk v1.1.0 -> v1.2.1
go.opentelemetry.io/collector/component v1.31.0 -> v1.51.1-0.20260205185216-81bc641f26c0
go.opentelemetry.io/collector/featuregate v1.31.0 -> v1.51.1-0.20260205185216-81bc641f26c0
go.opentelemetry.io/collector/pdata v1.31.0 -> v1.51.1-0.20260205185216-81bc641f26c0
go.opentelemetry.io/collector/pdata/pprofile v0.125.0 -> v0.145.1-0.20260205185216-81bc641f26c0
go.opentelemetry.io/otel v1.36.0 -> v1.41.0
go.opentelemetry.io/otel/log v0.11.0 -> v0.15.0
go.opentelemetry.io/otel/metric v1.36.0 -> v1.41.0
go.opentelemetry.io/otel/sdk v1.36.0 -> v1.40.0
go.opentelemetry.io/otel/trace v1.36.0 -> v1.41.0
go.uber.org/zap v1.27.0 -> v1.27.1
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 -> v0.0.0-20260209203927-2842357ff358
golang.org/x/mod v0.25.0 -> v0.34.0
golang.org/x/net v0.41.0 -> v0.52.0
golang.org/x/sys v0.35.0 -> v0.43.0
golang.org/x/text v0.26.0 -> v0.35.0
golang.org/x/time v0.12.0 -> v0.15.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 -> v0.0.0-20260209200024-4cfbd4190f57
google.golang.org/grpc v1.73.0 -> v1.79.3
gopkg.in/ini.v1 v1.67.0 -> v1.67.1

@dd-prapprover

dd-prapprover Bot commented Jun 20, 2026

Copy link
Copy Markdown

PRApprover will approve and merge this PR, FAQ, #dx-source-code-management

🛠️ PRApproval Status

  • ✅ PR is eligible for auto-approval by rule datadog-agent-renovate - 2026-07-08T20:11:49Z
  • ⬜ CI tests passed
  • ⬜ Approved
  • Manual merge required: this rule does not auto-merge.

➡️ Current phase: CI tests failed. Please fix the failing tests to continue.

@dd-octo-sts dd-octo-sts Bot added the internal Identify a non-fork PR label Jun 20, 2026
@github-actions github-actions Bot added the medium review PR review might take time label Jun 20, 2026

@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: 21defdcf46

ℹ️ 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".

go 1.23.1

toolchain go1.24.4
go 1.25.0

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 Keep testprogs buildable with older Go toolchains

When dda inv system-probe.build-dyninst-test-programs runs, tasks/system_probe.py still builds every dyninst test program with GOTOOLCHAIN=go1.23.11 and GOTOOLCHAIN=go1.24.3 in addition to newer versions. Raising this nested module's go directive to 1.25 means those pinned older toolchains refuse to load the module, so the older-toolchain dyninst binaries can no longer be regenerated and the tests depending on those configs either fail or lose coverage. Please keep this module's directive/dependencies compatible with the declared build matrix, or update the matrix and snapshots in the same change.

Useful? React with 👍 / 👎.

@datadog-prod-us1-3

This comment has been minimized.

@dd-octo-sts

dd-octo-sts Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

Files inventory check summary

File checks results against ancestor b385a845:

Results for datadog-agent_7.82.0~devel.git.764.1147629.pipeline.123636061-1_amd64.deb:

No change detected

@dd-octo-sts

dd-octo-sts Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

Static quality checks

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

32 successful checks with minimal change (< 2 KiB)
Quality gate Current Size
agent_deb_amd64 749.010 MiB
agent_deb_amd64_fips 704.011 MiB
agent_heroku_amd64 307.256 MiB
agent_rpm_amd64 748.994 MiB
agent_rpm_amd64_fips 703.995 MiB
agent_rpm_arm64 724.273 MiB
agent_rpm_arm64_fips 683.003 MiB
agent_suse_amd64 748.994 MiB
agent_suse_amd64_fips 703.995 MiB
agent_suse_arm64 724.273 MiB
agent_suse_arm64_fips 683.003 MiB
docker_agent_amd64 807.756 MiB
docker_agent_arm64 808.064 MiB
docker_agent_jmx_amd64 998.654 MiB
docker_agent_jmx_arm64 987.614 MiB
docker_cluster_agent_amd64 209.420 MiB
docker_cluster_agent_arm64 222.514 MiB
docker_cws_instrumentation_amd64 7.447 MiB
docker_cws_instrumentation_arm64 6.877 MiB
docker_dogstatsd_amd64 39.149 MiB
docker_dogstatsd_arm64 37.242 MiB
docker_host_profiler_amd64 302.535 MiB
docker_host_profiler_arm64 314.098 MiB
dogstatsd_deb_amd64 29.884 MiB
dogstatsd_deb_arm64 27.924 MiB
dogstatsd_rpm_amd64 29.884 MiB
dogstatsd_suse_amd64 29.884 MiB
iot_agent_deb_amd64 45.892 MiB
iot_agent_deb_arm64 42.587 MiB
iot_agent_deb_armhf 43.364 MiB
iot_agent_rpm_amd64 45.892 MiB
iot_agent_suse_amd64 45.891 MiB

@cit-pr-commenter-54b7da

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

Copy link
Copy Markdown

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: cd31e1d8-8d8d-4e68-9be4-f901012b64bd

Baseline: 5e97aeb
Comparison: 1147629
Diff

Optimization Goals: ✅ No significant changes detected

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_logs % cpu utilization +0.82 [-0.26, +1.89] 1 Logs bounds checks dashboard
quality_gate_security_mean_fs_load memory utilization +0.45 [+0.41, +0.48] 1 Logs bounds checks dashboard
quality_gate_security_idle memory utilization +0.27 [+0.21, +0.34] 1 Logs bounds checks dashboard
quality_gate_security_no_fs_load memory utilization -0.08 [-0.18, +0.02] 1 Logs bounds checks dashboard
quality_gate_idle memory utilization -0.12 [-0.17, -0.07] 1 Logs bounds checks dashboard
quality_gate_metrics_logs memory utilization -0.13 [-0.38, +0.12] 1 Logs bounds checks dashboard
quality_gate_idle_all_features memory utilization -0.33 [-0.37, -0.29] 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 145.05MiB ≤ 154MiB bounds checks dashboard
quality_gate_idle total_bytes_received 10/10 581.12KiB ≤ 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 486.07MiB ≤ 495MiB bounds checks dashboard
quality_gate_idle_all_features total_bytes_received 10/10 0.89MiB ≤ 1.25MiB bounds checks dashboard
quality_gate_logs intake_connections 10/10 4 ≤ 6 bounds checks dashboard
quality_gate_logs memory_usage 10/10 181.91MiB ≤ 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.21MiB ≤ 292MiB bounds checks dashboard
quality_gate_metrics_logs cpu_usage 10/10 331.91 ≤ 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 390.20MiB ≤ 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.86GiB ≤ 1.04GiB bounds checks dashboard
quality_gate_security_idle cpu_usage 10/10 29.93 ≤ 40 bounds checks dashboard
quality_gate_security_idle memory_usage 10/10 298.25MiB ≤ 330MiB bounds checks dashboard
quality_gate_security_mean_fs_load cpu_usage 10/10 62.69 ≤ 80 bounds checks dashboard
quality_gate_security_mean_fs_load memory_usage 10/10 277.30MiB ≤ 310MiB bounds checks dashboard
quality_gate_security_no_fs_load cpu_usage 10/10 23.95 ≤ 40 bounds checks dashboard
quality_gate_security_no_fs_load memory_usage 10/10 295.93MiB ≤ 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_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
quality_gate_metrics_logs comparison 10 Oom killed Debug Dashboard
quality_gate_security_idle baseline 10 Oom killed Debug Dashboard
quality_gate_security_idle comparison 10 Oom killed Debug Dashboard
quality_gate_security_no_fs_load comparison 10 Oom killed Debug Dashboard

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_logs, bounds check memory_usage: 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 missed_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_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_security_no_fs_load, 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_idle_all_features, bounds check total_bytes_received: 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_metrics_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check intake_connections: 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 cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check total_bytes_received: 10/10 replicas passed. Gate passed.
  • quality_gate_security_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_security_idle, bounds check cpu_usage: 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_idle, bounds check intake_connections: 10/10 replicas passed. Gate passed.

@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.8.2 fix(deps): update module github.com/datadog/dd-trace-go/contrib/net/http/v2 to v2.8.2 Jun 24, 2026
@renovate renovate Bot changed the title fix(deps): update module github.com/datadog/dd-trace-go/contrib/net/http/v2 to v2.8.2 Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.8.2 Jun 25, 2026
@renovate renovate Bot force-pushed the renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x branch from 21defdc to 63c28c7 Compare June 26, 2026 20:13
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.8.2 Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 Jun 26, 2026
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 - autoclosed Jun 29, 2026
@renovate renovate Bot closed this Jun 29, 2026
@renovate renovate Bot deleted the renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x branch June 29, 2026 22:49
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 - autoclosed Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 Jun 30, 2026
@renovate renovate Bot reopened this Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x branch 4 times, most recently from 5ef7f85 to 966d203 Compare July 3, 2026 22:38
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.0 Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1 Jul 3, 2026
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1 Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1 - autoclosed Jul 7, 2026
@renovate renovate Bot closed this Jul 7, 2026
@renovate renovate Bot changed the title Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1 - autoclosed Update module github.com/DataDog/dd-trace-go/contrib/net/http/v2 to v2.9.1 Jul 8, 2026
@renovate renovate Bot reopened this Jul 8, 2026
@renovate renovate Bot force-pushed the renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x branch 2 times, most recently from 966d203 to de8b9c8 Compare July 8, 2026 05:59
@renovate renovate Bot force-pushed the renovate/github.com-datadog-dd-trace-go-contrib-net-http-v2-2.x branch from de8b9c8 to 1147629 Compare July 8, 2026 20:11
@rdesgroppes rdesgroppes added the stop-updating Prevent auto updates from Renovate label Jul 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

changelog/no-changelog No changelog entry needed dependencies PRs that bump a dependency dependencies-go PRs that bump a go dependency internal Identify a non-fork PR medium review PR review might take time qa/no-code-change No code change in Agent code requiring validation stop-updating Prevent auto updates from Renovate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant