-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathgo.mod
More file actions
450 lines (445 loc) · 29.5 KB
/
go.mod
File metadata and controls
450 lines (445 loc) · 29.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
module github.com/DataDog/datadog-agent/test/e2e-framework
go 1.25.6
require (
dario.cat/mergo v1.0.2
github.com/DataDog/datadog-agent/pkg/util/option v0.76.0-rc.4
github.com/DataDog/datadog-agent/pkg/util/pointer v0.76.0-rc.4
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.76.0-rc.4
github.com/DataDog/datadog-agent/test/fakeintake v0.56.0-rc.3
github.com/DataDog/datadog-agent/test/new-e2e v0.77.0-devel.0.20260211235139-a5361978c2b6
github.com/DataDog/datadog-api-client-go/v2 v2.55.0
github.com/Masterminds/semver/v3 v3.4.0
github.com/alessio/shellescape v1.4.2
github.com/aws/aws-sdk-go-v2 v1.41.2
github.com/aws/aws-sdk-go-v2/config v1.32.10
github.com/aws/aws-sdk-go-v2/service/ec2 v1.291.0
github.com/aws/aws-sdk-go-v2/service/ecr v1.45.1
github.com/aws/aws-sdk-go-v2/service/ecs v1.72.1
github.com/aws/aws-sdk-go-v2/service/eks v1.74.0
github.com/aws/aws-sdk-go-v2/service/s3 v1.96.2
github.com/aws/aws-sdk-go-v2/service/ssm v1.67.7
github.com/aws/session-manager-plugin v0.0.0-20241119210807-82dc72922492
github.com/cenkalti/backoff/v5 v5.0.3
github.com/docker/cli v29.2.1+incompatible
github.com/docker/docker v28.5.2+incompatible
github.com/google/gofuzz v1.2.0
github.com/google/uuid v1.6.0
github.com/pkg/sftp v1.13.9
github.com/pulumi/pulumi-aws/sdk/v6 v6.66.2
github.com/pulumi/pulumi-awsx/sdk/v2 v2.19.0
github.com/pulumi/pulumi-azure-native-sdk/authorization/v2 v2.81.0
github.com/pulumi/pulumi-azure-native-sdk/compute/v2 v2.81.0
github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2 v2.81.0
github.com/pulumi/pulumi-azure-native-sdk/managedidentity/v2 v2.81.0
github.com/pulumi/pulumi-azure-native-sdk/network/v2 v2.81.0
github.com/pulumi/pulumi-azure-native-sdk/v2 v2.81.0
github.com/pulumi/pulumi-command/sdk v1.0.1
github.com/pulumi/pulumi-docker/sdk/v4 v4.9.0
github.com/pulumi/pulumi-eks/sdk/v3 v3.7.0
github.com/pulumi/pulumi-gcp/sdk/v7 v7.38.0
github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.23.0
github.com/pulumi/pulumi-libvirt/sdk v0.5.4
github.com/pulumi/pulumi-random/sdk/v4 v4.18.4
github.com/pulumi/pulumi-tls/sdk/v4 v4.11.1
github.com/pulumi/pulumi/sdk/v3 v3.190.0
github.com/pulumiverse/pulumi-time/sdk v0.1.0
github.com/samber/lo v1.52.0
github.com/stretchr/testify v1.11.1
go.yaml.in/yaml/v2 v2.4.3
go.yaml.in/yaml/v3 v3.0.4
golang.org/x/crypto v0.48.0
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa
gopkg.in/zorkian/go-datadog-api.v2 v2.30.0
k8s.io/api v0.35.1
k8s.io/apimachinery v0.35.1
k8s.io/cli-runtime v0.34.1
k8s.io/client-go v0.35.1
k8s.io/kubectl v0.34.1
)
require (
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
github.com/BurntSushi/toml v1.6.0 // indirect
github.com/DataDog/agent-payload/v5 v5.0.182 // indirect
github.com/DataDog/datadog-agent/comp/core/tagger/origindetection v0.76.0-rc.4 // indirect
github.com/DataDog/datadog-agent/comp/netflow/payload v0.56.0-rc.3 // indirect
github.com/DataDog/datadog-agent/pkg/metrics v0.76.0-rc.4 // indirect
github.com/DataDog/datadog-agent/pkg/network/payload v0.0.0-20250128160050-7ac9ccd58c07 // indirect
github.com/DataDog/datadog-agent/pkg/networkpath/payload v0.0.0-20250128160050-7ac9ccd58c07 // indirect
github.com/DataDog/datadog-agent/pkg/proto v0.76.0-rc.4 // indirect
github.com/DataDog/datadog-agent/pkg/tagger/types v0.76.0-rc.4 // indirect
github.com/DataDog/datadog-agent/pkg/version v0.76.0-rc.4 // indirect
github.com/DataDog/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect
github.com/DataDog/zstd v1.5.7 // indirect
github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f // indirect
github.com/MakeNowJust/heredoc v1.0.0 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/ProtonMail/go-crypto v1.3.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aws/aws-sdk-go v1.55.8 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.5 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.19.10 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.18 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.18 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.10 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.18 // indirect
github.com/aws/aws-sdk-go-v2/service/signin v1.0.6 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.30.11 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.15 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.41.7 // indirect
github.com/aws/smithy-go v1.24.1 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/chai2010/gettext-go v1.0.2 // indirect
github.com/charmbracelet/bubbles v0.21.0 // indirect
github.com/charmbracelet/bubbletea v1.3.10 // indirect
github.com/charmbracelet/colorprofile v0.3.1 // indirect
github.com/charmbracelet/lipgloss v1.1.0 // indirect
github.com/charmbracelet/x/ansi v0.10.1 // indirect
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
github.com/charmbracelet/x/term v0.2.1 // indirect
github.com/cheggaaa/pb v1.0.29 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
github.com/cloudflare/circl v1.6.3 // indirect
github.com/containerd/errdefs v1.0.0 // indirect
github.com/containerd/errdefs/pkg v0.3.0 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/creack/pty v1.1.24 // indirect
github.com/cyphar/filepath-securejoin v0.6.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/djherbis/times v1.6.0 // indirect
github.com/docker/go-connections v0.6.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
github.com/go-errors/errors v1.5.1 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.6.2 // indirect
github.com/go-git/go-git/v5 v5.14.0 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.22.1 // indirect
github.com/go-openapi/jsonreference v0.21.3 // indirect
github.com/go-openapi/swag v0.25.4 // indirect
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
github.com/go-openapi/swag/conv v0.25.4 // indirect
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
github.com/go-openapi/swag/loading v0.25.4 // indirect
github.com/go-openapi/swag/mangling v0.25.4 // indirect
github.com/go-openapi/swag/netutils v0.25.4 // indirect
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.5 // indirect
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
github.com/google/btree v1.1.3 // indirect
github.com/google/gnostic-models v0.7.0 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/pprof v0.0.0-20260111202518-71be6bfdd440 // indirect
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/iwdgo/sigintwindows v0.2.2 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jmespath/go-jmespath v0.4.1-0.20220621161143-b0104c826a24 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/klauspost/compress v1.18.4 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/mitchellh/go-ps v1.0.0 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/spdystream v0.5.0 // indirect
github.com/moby/sys/atomicwriter v0.1.0 // indirect
github.com/moby/term v0.5.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/opentracing/basictracer-go v1.1.0 // indirect
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pgavlin/fx v0.1.6 // indirect
github.com/philhofer/fwd v1.2.0 // indirect
github.com/pjbgf/sha1cd v0.3.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/term v1.1.0 // indirect
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
github.com/pulumi/esc v0.17.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
github.com/sergi/go-diff v1.4.0 // indirect
github.com/sirupsen/logrus v1.9.4 // indirect
github.com/skeema/knownhosts v1.3.1 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/spf13/cobra v1.10.2 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
github.com/tinylib/msgp v1.6.3 // indirect
github.com/twinj/uuid v0.0.0-20151029044442-89173bcdda19 // indirect
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
github.com/zclconf/go-cty v1.15.1 // indirect
github.com/zorkian/go-datadog-api v2.30.0+incompatible // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
go.opentelemetry.io/otel v1.41.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0 // indirect
go.opentelemetry.io/otel/metric v1.41.0 // indirect
go.opentelemetry.io/otel/trace v1.41.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/mod v0.33.0 // indirect
golang.org/x/net v0.51.0 // indirect
golang.org/x/oauth2 v0.35.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/term v0.40.0 // indirect
golang.org/x/text v0.34.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/tools v0.42.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
google.golang.org/grpc v1.79.1 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.2 // indirect
k8s.io/component-base v0.35.0 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
lukechampine.com/frand v1.5.1 // indirect
pgregory.net/rapid v1.2.0 // indirect
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
sigs.k8s.io/kustomize/api v0.20.1 // indirect
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
sigs.k8s.io/randfill v1.0.0 // indirect
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
sigs.k8s.io/yaml v1.6.0 // indirect
)
// This section was automatically added by 'dda inv modules.add-all-replace' command, do not edit manually
replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/core/agenttelemetry/def => ../../comp/core/agenttelemetry/def
github.com/DataDog/datadog-agent/comp/core/agenttelemetry/fx => ../../comp/core/agenttelemetry/fx
github.com/DataDog/datadog-agent/comp/core/agenttelemetry/impl => ../../comp/core/agenttelemetry/impl
github.com/DataDog/datadog-agent/comp/core/config => ../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/delegatedauth => ../../comp/core/delegatedauth
github.com/DataDog/datadog-agent/comp/core/delegatedauth/api/cloudauth/aws => ../../comp/core/delegatedauth/api/cloudauth/aws
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../comp/core/hostname/hostnameinterface
github.com/DataDog/datadog-agent/comp/core/ipc/def => ../../comp/core/ipc/def
github.com/DataDog/datadog-agent/comp/core/ipc/httphelpers => ../../comp/core/ipc/httphelpers
github.com/DataDog/datadog-agent/comp/core/ipc/impl => ../../comp/core/ipc/impl
github.com/DataDog/datadog-agent/comp/core/ipc/mock => ../../comp/core/ipc/mock
github.com/DataDog/datadog-agent/comp/core/log/def => ../../comp/core/log/def
github.com/DataDog/datadog-agent/comp/core/log/fx => ../../comp/core/log/fx
github.com/DataDog/datadog-agent/comp/core/log/impl => ../../comp/core/log/impl
github.com/DataDog/datadog-agent/comp/core/log/impl-trace => ../../comp/core/log/impl-trace
github.com/DataDog/datadog-agent/comp/core/log/mock => ../../comp/core/log/mock
github.com/DataDog/datadog-agent/comp/core/secrets/def => ../../comp/core/secrets/def
github.com/DataDog/datadog-agent/comp/core/secrets/fx => ../../comp/core/secrets/fx
github.com/DataDog/datadog-agent/comp/core/secrets/impl => ../../comp/core/secrets/impl
github.com/DataDog/datadog-agent/comp/core/secrets/mock => ../../comp/core/secrets/mock
github.com/DataDog/datadog-agent/comp/core/secrets/noop-impl => ../../comp/core/secrets/noop-impl
github.com/DataDog/datadog-agent/comp/core/secrets/utils => ../../comp/core/secrets/utils
github.com/DataDog/datadog-agent/comp/core/status => ../../comp/core/status
github.com/DataDog/datadog-agent/comp/core/status/statusimpl => ../../comp/core/status/statusimpl
github.com/DataDog/datadog-agent/comp/core/tagger/def => ../../comp/core/tagger/def
github.com/DataDog/datadog-agent/comp/core/tagger/fx-remote => ../../comp/core/tagger/fx-remote
github.com/DataDog/datadog-agent/comp/core/tagger/generic_store => ../../comp/core/tagger/generic_store
github.com/DataDog/datadog-agent/comp/core/tagger/impl-remote => ../../comp/core/tagger/impl-remote
github.com/DataDog/datadog-agent/comp/core/tagger/origindetection => ../../comp/core/tagger/origindetection
github.com/DataDog/datadog-agent/comp/core/tagger/subscriber => ../../comp/core/tagger/subscriber
github.com/DataDog/datadog-agent/comp/core/tagger/tags => ../../comp/core/tagger/tags
github.com/DataDog/datadog-agent/comp/core/tagger/telemetry => ../../comp/core/tagger/telemetry
github.com/DataDog/datadog-agent/comp/core/tagger/types => ../../comp/core/tagger/types
github.com/DataDog/datadog-agent/comp/core/tagger/utils => ../../comp/core/tagger/utils
github.com/DataDog/datadog-agent/comp/core/telemetry => ../../comp/core/telemetry
github.com/DataDog/datadog-agent/comp/def => ../../comp/def
github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder => ../../comp/forwarder/defaultforwarder
github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface => ../../comp/forwarder/orchestrator/orchestratorinterface
github.com/DataDog/datadog-agent/comp/logs-library => ../../comp/logs-library
github.com/DataDog/datadog-agent/comp/logs/agent/config => ../../comp/logs/agent/config
github.com/DataDog/datadog-agent/comp/netflow/payload => ../../comp/netflow/payload
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def => ../../comp/otelcol/collector-contrib/def
github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/impl => ../../comp/otelcol/collector-contrib/impl
github.com/DataDog/datadog-agent/comp/otelcol/converter/def => ../../comp/otelcol/converter/def
github.com/DataDog/datadog-agent/comp/otelcol/converter/impl => ../../comp/otelcol/converter/impl
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/def => ../../comp/otelcol/ddflareextension/def
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl => ../../comp/otelcol/ddflareextension/impl
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/types => ../../comp/otelcol/ddflareextension/types
github.com/DataDog/datadog-agent/comp/otelcol/ddprofilingextension/def => ../../comp/otelcol/ddprofilingextension/def
github.com/DataDog/datadog-agent/comp/otelcol/ddprofilingextension/impl => ../../comp/otelcol/ddprofilingextension/impl
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline => ../../comp/otelcol/logsagentpipeline
github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl => ../../comp/otelcol/logsagentpipeline/logsagentpipelineimpl
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/datadogexporter => ../../comp/otelcol/otlp/components/exporter/datadogexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter => ../../comp/otelcol/otlp/components/exporter/logsagentexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter => ../../comp/otelcol/otlp/components/exporter/serializerexporter
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient => ../../comp/otelcol/otlp/components/metricsclient
github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/processor/infraattributesprocessor => ../../comp/otelcol/otlp/components/processor/infraattributesprocessor
github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil => ../../comp/otelcol/otlp/testutil
github.com/DataDog/datadog-agent/comp/otelcol/status/def => ../../comp/otelcol/status/def
github.com/DataDog/datadog-agent/comp/otelcol/status/impl => ../../comp/otelcol/status/impl
github.com/DataDog/datadog-agent/comp/serializer/logscompression => ../../comp/serializer/logscompression
github.com/DataDog/datadog-agent/comp/serializer/metricscompression => ../../comp/serializer/metricscompression
github.com/DataDog/datadog-agent/comp/trace/agent/def => ../../comp/trace/agent/def
github.com/DataDog/datadog-agent/comp/trace/compression/def => ../../comp/trace/compression/def
github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip => ../../comp/trace/compression/impl-gzip
github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd => ../../comp/trace/compression/impl-zstd
github.com/DataDog/datadog-agent/pkg/aggregator/ckey => ../../pkg/aggregator/ckey
github.com/DataDog/datadog-agent/pkg/api => ../../pkg/api
github.com/DataDog/datadog-agent/pkg/collector/check/defaults => ../../pkg/collector/check/defaults
github.com/DataDog/datadog-agent/pkg/config/basic => ../../pkg/config/basic
github.com/DataDog/datadog-agent/pkg/config/create => ../../pkg/config/create
github.com/DataDog/datadog-agent/pkg/config/env => ../../pkg/config/env
github.com/DataDog/datadog-agent/pkg/config/helper => ../../pkg/config/helper
github.com/DataDog/datadog-agent/pkg/config/mock => ../../pkg/config/mock
github.com/DataDog/datadog-agent/pkg/config/model => ../../pkg/config/model
github.com/DataDog/datadog-agent/pkg/config/nodetreemodel => ../../pkg/config/nodetreemodel
github.com/DataDog/datadog-agent/pkg/config/remote => ../../pkg/config/remote
github.com/DataDog/datadog-agent/pkg/config/setup => ../../pkg/config/setup
github.com/DataDog/datadog-agent/pkg/config/structure => ../../pkg/config/structure
github.com/DataDog/datadog-agent/pkg/config/teeconfig => ../../pkg/config/teeconfig
github.com/DataDog/datadog-agent/pkg/config/utils => ../../pkg/config/utils
github.com/DataDog/datadog-agent/pkg/config/viperconfig => ../../pkg/config/viperconfig
github.com/DataDog/datadog-agent/pkg/errors => ../../pkg/errors
github.com/DataDog/datadog-agent/pkg/fips => ../../pkg/fips
github.com/DataDog/datadog-agent/pkg/fleet/installer => ../../pkg/fleet/installer
github.com/DataDog/datadog-agent/pkg/gohai => ../../pkg/gohai
github.com/DataDog/datadog-agent/pkg/logs/client => ../../pkg/logs/client
github.com/DataDog/datadog-agent/pkg/logs/diagnostic => ../../pkg/logs/diagnostic
github.com/DataDog/datadog-agent/pkg/logs/message => ../../pkg/logs/message
github.com/DataDog/datadog-agent/pkg/logs/metrics => ../../pkg/logs/metrics
github.com/DataDog/datadog-agent/pkg/logs/pipeline => ../../pkg/logs/pipeline
github.com/DataDog/datadog-agent/pkg/logs/processor => ../../pkg/logs/processor
github.com/DataDog/datadog-agent/pkg/logs/sender => ../../pkg/logs/sender
github.com/DataDog/datadog-agent/pkg/logs/sources => ../../pkg/logs/sources
github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface => ../../pkg/logs/status/statusinterface
github.com/DataDog/datadog-agent/pkg/logs/status/utils => ../../pkg/logs/status/utils
github.com/DataDog/datadog-agent/pkg/logs/types => ../../pkg/logs/types
github.com/DataDog/datadog-agent/pkg/logs/util/testutils => ../../pkg/logs/util/testutils
github.com/DataDog/datadog-agent/pkg/metrics => ../../pkg/metrics
github.com/DataDog/datadog-agent/pkg/network/driver => ../../pkg/network/driver
github.com/DataDog/datadog-agent/pkg/network/payload => ../../pkg/network/payload
github.com/DataDog/datadog-agent/pkg/networkdevice/profile => ../../pkg/networkdevice/profile
github.com/DataDog/datadog-agent/pkg/networkpath/payload => ../../pkg/networkpath/payload
github.com/DataDog/datadog-agent/pkg/obfuscate => ../../pkg/obfuscate
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/inframetadata => ../../pkg/opentelemetry-mapping-go/inframetadata
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/inframetadata/gohai/internal/gohaitest => ../../pkg/opentelemetry-mapping-go/inframetadata/gohai/internal/gohaitest
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/attributes => ../../pkg/opentelemetry-mapping-go/otlp/attributes
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/logs => ../../pkg/opentelemetry-mapping-go/otlp/logs
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/metrics => ../../pkg/opentelemetry-mapping-go/otlp/metrics
github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/rum => ../../pkg/opentelemetry-mapping-go/otlp/rum
github.com/DataDog/datadog-agent/pkg/orchestrator/model => ../../pkg/orchestrator/model
github.com/DataDog/datadog-agent/pkg/orchestrator/util => ../../pkg/orchestrator/util
github.com/DataDog/datadog-agent/pkg/process/util/api => ../../pkg/process/util/api
github.com/DataDog/datadog-agent/pkg/proto => ../../pkg/proto
github.com/DataDog/datadog-agent/pkg/remoteconfig/state => ../../pkg/remoteconfig/state
github.com/DataDog/datadog-agent/pkg/security/secl => ../../pkg/security/secl
github.com/DataDog/datadog-agent/pkg/security/seclwin => ../../pkg/security/seclwin
github.com/DataDog/datadog-agent/pkg/serializer => ../../pkg/serializer
github.com/DataDog/datadog-agent/pkg/ssi/testutils => ../../pkg/ssi/testutils
github.com/DataDog/datadog-agent/pkg/status/health => ../../pkg/status/health
github.com/DataDog/datadog-agent/pkg/tagger/types => ../../pkg/tagger/types
github.com/DataDog/datadog-agent/pkg/tagset => ../../pkg/tagset
github.com/DataDog/datadog-agent/pkg/telemetry => ../../pkg/telemetry
github.com/DataDog/datadog-agent/pkg/template => ../../pkg/template
github.com/DataDog/datadog-agent/pkg/trace => ../../pkg/trace
github.com/DataDog/datadog-agent/pkg/trace/log => ../../pkg/trace/log
github.com/DataDog/datadog-agent/pkg/trace/otel => ../../pkg/trace/otel
github.com/DataDog/datadog-agent/pkg/trace/stats => ../../pkg/trace/stats
github.com/DataDog/datadog-agent/pkg/trace/traceutil => ../../pkg/trace/traceutil
github.com/DataDog/datadog-agent/pkg/util/aws/creds => ../../pkg/util/aws/creds
github.com/DataDog/datadog-agent/pkg/util/backoff => ../../pkg/util/backoff
github.com/DataDog/datadog-agent/pkg/util/buf => ../../pkg/util/buf
github.com/DataDog/datadog-agent/pkg/util/cache => ../../pkg/util/cache
github.com/DataDog/datadog-agent/pkg/util/cgroups => ../../pkg/util/cgroups
github.com/DataDog/datadog-agent/pkg/util/common => ../../pkg/util/common
github.com/DataDog/datadog-agent/pkg/util/compression => ../../pkg/util/compression
github.com/DataDog/datadog-agent/pkg/util/containers/image => ../../pkg/util/containers/image
github.com/DataDog/datadog-agent/pkg/util/defaultpaths => ../../pkg/util/defaultpaths
github.com/DataDog/datadog-agent/pkg/util/executable => ../../pkg/util/executable
github.com/DataDog/datadog-agent/pkg/util/filesystem => ../../pkg/util/filesystem
github.com/DataDog/datadog-agent/pkg/util/flavor => ../../pkg/util/flavor
github.com/DataDog/datadog-agent/pkg/util/fxutil => ../../pkg/util/fxutil
github.com/DataDog/datadog-agent/pkg/util/grpc => ../../pkg/util/grpc
github.com/DataDog/datadog-agent/pkg/util/hostinfo => ../../pkg/util/hostinfo
github.com/DataDog/datadog-agent/pkg/util/hostname/validate => ../../pkg/util/hostname/validate
github.com/DataDog/datadog-agent/pkg/util/http => ../../pkg/util/http
github.com/DataDog/datadog-agent/pkg/util/json => ../../pkg/util/json
github.com/DataDog/datadog-agent/pkg/util/jsonquery => ../../pkg/util/jsonquery
github.com/DataDog/datadog-agent/pkg/util/kubernetes/apiserver/common/namespace => ../../pkg/util/kubernetes/apiserver/common/namespace
github.com/DataDog/datadog-agent/pkg/util/log => ../../pkg/util/log
github.com/DataDog/datadog-agent/pkg/util/log/setup => ../../pkg/util/log/setup
github.com/DataDog/datadog-agent/pkg/util/option => ../../pkg/util/option
github.com/DataDog/datadog-agent/pkg/util/otel => ../../pkg/util/otel
github.com/DataDog/datadog-agent/pkg/util/pointer => ../../pkg/util/pointer
github.com/DataDog/datadog-agent/pkg/util/prometheus => ../../pkg/util/prometheus
github.com/DataDog/datadog-agent/pkg/util/quantile => ../../pkg/util/quantile
github.com/DataDog/datadog-agent/pkg/util/quantile/sketchtest => ../../pkg/util/quantile/sketchtest
github.com/DataDog/datadog-agent/pkg/util/scrubber => ../../pkg/util/scrubber
github.com/DataDog/datadog-agent/pkg/util/sort => ../../pkg/util/sort
github.com/DataDog/datadog-agent/pkg/util/startstop => ../../pkg/util/startstop
github.com/DataDog/datadog-agent/pkg/util/statstracker => ../../pkg/util/statstracker
github.com/DataDog/datadog-agent/pkg/util/system => ../../pkg/util/system
github.com/DataDog/datadog-agent/pkg/util/testutil => ../../pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/util/utilizationtracker => ../../pkg/util/utilizationtracker
github.com/DataDog/datadog-agent/pkg/util/uuid => ../../pkg/util/uuid
github.com/DataDog/datadog-agent/pkg/util/winutil => ../../pkg/util/winutil
github.com/DataDog/datadog-agent/pkg/version => ../../pkg/version
github.com/DataDog/datadog-agent/test/fakeintake => ../../test/fakeintake
github.com/DataDog/datadog-agent/test/new-e2e => ../../test/new-e2e
github.com/DataDog/datadog-agent/test/otel => ../../test/otel
)