Skip to content

Commit 0751c8a

Browse files
feat: collect service source in client stats (#4519)
[Bump agent dependency version to collect service source in client stats](DataDog/datadog-agent#45982), following this change to set the tag in tracer This PR consists only of dependencies update + a test file to assert client stats service source field <img width="220" height="47" alt="Screenshot 2026-03-09 at 23 59 35" src="https://github.com/user-attachments/assets/a84f7be6-b179-4050-8c53-2d98cbbaa4c7" /> ### Motivation <!-- * What inspired you to submit this pull request? * Link any related GitHub issues or PRs here. * If this resolves a GitHub issue, include "Fixes #XXXX" to link the issue and auto-close it on merge. --> ### Reviewer's Checklist <!-- * Authors can use this list as a reference to ensure that there are no problems during the review but the signing off is to be done by the reviewer(s). --> - [ ] Changed code has unit tests for its functionality at or near 100% coverage. - [ ] [System-Tests](https://github.com/DataDog/system-tests/) covering this feature have been added and enabled with the va.b.c-dev version tag. - [ ] There is a benchmark for any new code, or changes to existing code. - [ ] If this interacts with the agent in a new way, a system test has been added. - [ ] New code is free of linting errors. You can check this by running `make lint` locally. - [ ] New code doesn't break existing tests. You can check this by running `make test` locally. - [ ] Add an appropriate team label so this PR gets put in the right place for the release notes. - [ ] All generated files are up to date. You can check this by running `make generate` locally. - [ ] Non-trivial go.mod changes, e.g. adding new modules, are reviewed by @DataDog/dd-trace-go-guild. Make sure all nested modules are up to date by running `make fix-modules` locally. Unsure? Have a question? Request a review! Co-authored-by: raphael.gavache <[email protected]>
1 parent d9598e7 commit 0751c8a

165 files changed

Lines changed: 13762 additions & 15492 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/apps/go.mod

Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,76 +4,79 @@ go 1.25.0
44

55
require (
66
github.com/DataDog/dd-trace-go/v2 v2.4.0-dev
7-
golang.org/x/mod v0.32.0
7+
golang.org/x/mod v0.33.0
88
)
99

1010
require (
11-
github.com/DataDog/datadog-agent/comp/core/tagger/origindetection v0.75.2 // indirect
12-
github.com/DataDog/datadog-agent/pkg/obfuscate v0.75.2 // indirect
13-
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/attributes v0.75.2 // indirect
14-
github.com/DataDog/datadog-agent/pkg/proto v0.75.2 // indirect
15-
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.75.2 // indirect
16-
github.com/DataDog/datadog-agent/pkg/template v0.75.2 // indirect
17-
github.com/DataDog/datadog-agent/pkg/trace v0.75.2 // indirect
18-
github.com/DataDog/datadog-agent/pkg/util/log v0.75.2 // indirect
19-
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.75.2 // indirect
20-
github.com/DataDog/datadog-agent/pkg/version v0.75.2 // indirect
21-
github.com/DataDog/datadog-go/v5 v5.8.2 // indirect
22-
github.com/DataDog/go-libddwaf/v4 v4.8.0 // indirect
11+
github.com/DataDog/datadog-agent/comp/core/tagger/origindetection v0.77.0 // indirect
12+
github.com/DataDog/datadog-agent/pkg/obfuscate v0.77.0 // indirect
13+
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/attributes v0.77.0 // indirect
14+
github.com/DataDog/datadog-agent/pkg/proto v0.77.0 // indirect
15+
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.77.0 // indirect
16+
github.com/DataDog/datadog-agent/pkg/template v0.77.0 // indirect
17+
github.com/DataDog/datadog-agent/pkg/trace v0.77.0 // indirect
18+
github.com/DataDog/datadog-agent/pkg/trace/log v0.77.0 // indirect
19+
github.com/DataDog/datadog-agent/pkg/trace/otel v0.77.0 // indirect
20+
github.com/DataDog/datadog-agent/pkg/trace/stats v0.77.0 // indirect
21+
github.com/DataDog/datadog-agent/pkg/trace/traceutil v0.77.0 // indirect
22+
github.com/DataDog/datadog-agent/pkg/util/log v0.77.0 // indirect
23+
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.77.0 // indirect
24+
github.com/DataDog/datadog-agent/pkg/version v0.77.0 // indirect
25+
github.com/DataDog/datadog-go/v5 v5.8.3 // indirect
26+
github.com/DataDog/go-libddwaf/v4 v4.9.0 // indirect
2327
github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20260217080614-b0f4edc38a6d // indirect
24-
github.com/DataDog/go-sqllexer v0.1.10 // indirect
28+
github.com/DataDog/go-sqllexer v0.1.13 // indirect
2529
github.com/DataDog/go-tuf v1.1.1-0.5.2 // indirect
26-
github.com/DataDog/sketches-go v1.4.7 // indirect
30+
github.com/DataDog/sketches-go v1.4.8 // indirect
2731
github.com/Microsoft/go-winio v0.6.2 // indirect
2832
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2933
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3034
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
3135
github.com/dustin/go-humanize v1.0.1 // indirect
32-
github.com/ebitengine/purego v0.9.1 // indirect
36+
github.com/ebitengine/purego v0.10.0 // indirect
3337
github.com/go-ole/go-ole v1.3.0 // indirect
34-
github.com/golang/protobuf v1.5.4 // indirect
3538
github.com/google/uuid v1.6.0 // indirect
3639
github.com/hashicorp/go-version v1.8.0 // indirect
3740
github.com/json-iterator/go v1.1.12 // indirect
38-
github.com/klauspost/compress v1.18.2 // indirect
41+
github.com/klauspost/compress v1.18.4 // indirect
3942
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
4043
github.com/linkdata/deadlock v0.5.5 // indirect
41-
github.com/lufia/plan9stats v0.0.0-20250827001030-24949be3fa54 // indirect
44+
github.com/lufia/plan9stats v0.0.0-20260216142805-b3301c5f2a88 // indirect
4245
github.com/minio/simdjson-go v0.4.5 // indirect
4346
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4447
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
4548
github.com/outcaste-io/ristretto v0.2.3 // indirect
46-
github.com/petermattis/goid v0.0.0-20250813065127-a731cc31b4fe // indirect
49+
github.com/petermattis/goid v0.0.0-20260226131333-17d1149c6ac6 // indirect
4750
github.com/philhofer/fwd v1.2.0 // indirect
4851
github.com/pkg/errors v0.9.1 // indirect
4952
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
5053
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
5154
github.com/puzpuzpuz/xsync/v3 v3.5.1 // indirect
52-
github.com/secure-systems-lab/go-securesystemslib v0.9.1 // indirect
53-
github.com/shirou/gopsutil/v4 v4.25.11 // indirect
54-
github.com/tinylib/msgp v1.6.1 // indirect
55+
github.com/secure-systems-lab/go-securesystemslib v0.10.0 // indirect
56+
github.com/shirou/gopsutil/v4 v4.26.2 // indirect
57+
github.com/tinylib/msgp v1.6.3 // indirect
5558
github.com/tklauser/go-sysconf v0.3.16 // indirect
5659
github.com/tklauser/numcpus v0.11.0 // indirect
5760
github.com/trailofbits/go-mutexasserts v0.0.0-20250514102930-c1f3d2e37561 // indirect
5861
github.com/yusufpapurcu/wmi v1.2.4 // indirect
59-
go.opentelemetry.io/collector/component v1.48.0 // indirect
60-
go.opentelemetry.io/collector/featuregate v1.48.0 // indirect
61-
go.opentelemetry.io/collector/pdata v1.48.0 // indirect
62-
go.opentelemetry.io/collector/pdata/pprofile v0.142.0 // indirect
63-
go.opentelemetry.io/otel v1.40.0 // indirect
64-
go.opentelemetry.io/otel/metric v1.40.0 // indirect
65-
go.opentelemetry.io/otel/trace v1.40.0 // indirect
62+
go.opentelemetry.io/collector/component v1.51.1-0.20260205185216-81bc641f26c0 // indirect
63+
go.opentelemetry.io/collector/featuregate v1.51.1-0.20260205185216-81bc641f26c0 // indirect
64+
go.opentelemetry.io/collector/pdata v1.51.1-0.20260205185216-81bc641f26c0 // indirect
65+
go.opentelemetry.io/collector/pdata/pprofile v0.145.1-0.20260205185216-81bc641f26c0 // indirect
66+
go.opentelemetry.io/otel v1.41.0 // indirect
67+
go.opentelemetry.io/otel/metric v1.41.0 // indirect
68+
go.opentelemetry.io/otel/trace v1.41.0 // indirect
6669
go.uber.org/atomic v1.11.0 // indirect
6770
go.uber.org/multierr v1.11.0 // indirect
6871
go.uber.org/zap v1.27.1 // indirect
6972
go.yaml.in/yaml/v3 v3.0.4 // indirect
70-
golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 // indirect
73+
golang.org/x/exp v0.0.0-20260209203927-2842357ff358 // indirect
7174
golang.org/x/sys v0.41.0 // indirect
7275
golang.org/x/time v0.14.0 // indirect
7376
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
74-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
75-
google.golang.org/protobuf v1.36.10 // indirect
76-
gopkg.in/ini.v1 v1.67.0 // indirect
77+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
78+
google.golang.org/protobuf v1.36.11 // indirect
79+
gopkg.in/ini.v1 v1.67.1 // indirect
7780
gopkg.in/yaml.v3 v3.0.1 // indirect
7881
)
7982

0 commit comments

Comments
 (0)