Skip to content

Commit

Permalink
Merge branch 'main' into remeh/arm64-sds
Browse files Browse the repository at this point in the history
  • Loading branch information
remeh authored Jun 6, 2024
2 parents 2b6c409 + d224b9a commit e7a0bfa
Show file tree
Hide file tree
Showing 103 changed files with 2,847 additions and 1,431 deletions.
6 changes: 6 additions & 0 deletions .copyright-overrides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ github.com/golang-sql/civil: Copyright 2016 Google LLC
# https://github.com/grafana/loki/blob/main/clients/cmd/fluentd/README.md
github.com/grafana/loki: Copyright 2018- Grafana Labs

# https://github.com/hamba/avro/blob/109ccdab2a7032d09b1d6a04aeb6ea214217fbd5/LICENCE
github.com/hamba/avro/v2: Copyright (c) 2024 Nicholas Wiersma

# https://github.com/scalyr/dataset-go/blob/main/README.md
github.com/scalyr/dataset-go: Copyright 2023 SentinelOne, Inc.

# For Apache projects, copyright is typically in individual source files and
# not scanned automatically.
github.com/tklauser/numcpus: Copyright 2018 Tobias Klauser
Expand Down
9 changes: 9 additions & 0 deletions .gitlab/source_test/technical_linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@ lint_update_go:
script:
- source /root/.bashrc
- inv -e linter.update-go

validate_modules:
stage: source_test
image: 486234852809.dkr.ecr.us-east-1.amazonaws.com/ci/datadog-agent-buildimages/deb_x64$DATADOG_AGENT_BUILDIMAGES_SUFFIX:$DATADOG_AGENT_BUILDIMAGES
tags: ["arch:amd64"]
needs: []
script:
- source /root/.bashrc
- inv -e modules.validate
294 changes: 292 additions & 2 deletions LICENSE-3rdparty.csv

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions cmd/agent/common/path/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ replace (
)

require (
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.2
golang.org/x/sys v0.19.0
)

require (
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.2 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion cmd/agent/subcommands/dogstatsdcapture/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func dogstatsdCapture(log log.Component, config config.Component, cliParams *cli
InsecureSkipVerify: true,
})

conn, err := grpc.DialContext(
conn, err := grpc.DialContext( //nolint:staticcheck // TODO (ASC) fix grpc.DialContext is deprecated
ctx,
fmt.Sprintf(":%v", pkgconfig.Datadog().GetInt("cmd_port")),
grpc.WithTransportCredentials(creds),
Expand Down
2 changes: 1 addition & 1 deletion cmd/agent/subcommands/dogstatsdreplay/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func dogstatsdReplay(log log.Component, config config.Component, cliParams *cliP
InsecureSkipVerify: true,
})

apiconn, err := grpc.DialContext(
apiconn, err := grpc.DialContext( //nolint:staticcheck // TODO (ASC) fix grpc.DialContext is deprecated
ctx,
fmt.Sprintf(":%v", pkgconfig.Datadog().GetInt("cmd_port")),
grpc.WithTransportCredentials(creds),
Expand Down
4 changes: 2 additions & 2 deletions cmd/cluster-agent/api/v1/kubernetes_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ func getNamespaceMetadataWithTransformerFunc[T any](w http.ResponseWriter, r *ht
nsName := vars["ns"]
namespace, err := wmeta.GetKubernetesNamespace(nsName)
if err != nil {
log.Errorf("Could not retrieve the %s of namespace %s: %v", nsName, what, err.Error()) //nolint:errcheck
log.Debugf("Could not retrieve the %s of namespace %s: %v", what, nsName, err.Error()) //nolint:errcheck
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}

metadata := f(namespace)
metadataBytes, err = json.Marshal(metadata)
if err != nil {
log.Errorf("Could not process the %s of the namespace %s from the workload metadata store: %v", what, nsName, err.Error()) //nolint:errcheck
log.Errorf("Failed to marshal %s %+v of namespace %s from the workload metadata store: %v", what, metadata, nsName, err.Error()) //nolint:errcheck
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
Expand Down
10 changes: 5 additions & 5 deletions cmd/trace-agent/test/testsuite/otlp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ apm_config:
}
defer r.KillAgent()

conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials())) //nolint:staticcheck // TODO (ASC) fix grpc.Dial is deprecated
if err != nil {
log.Fatal("Error dialing: ", err)
}
Expand Down Expand Up @@ -158,7 +158,7 @@ apm_config:
}
defer r.KillAgent()

conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials())) //nolint:staticcheck // TODO (ASC) fix grpc.Dial is deprecated
if err != nil {
log.Fatal("Error dialing: ", err)
}
Expand Down Expand Up @@ -209,7 +209,7 @@ apm_config:
})

// topLevelSpansAgentFn checks that the given agent payload matches with the testSpans input
var topLevelSpansAgentFn = func(v *pb.AgentPayload) {
topLevelSpansAgentFn := func(v *pb.AgentPayload) {
var serverSpan, internalSpan, clientSpan, producerSpan *pb.Span
for _, chunk := range v.TracerPayloads[0].Chunks {
for _, span := range chunk.Spans {
Expand Down Expand Up @@ -253,7 +253,7 @@ apm_config:
}
defer r.KillAgent()

conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials())) //nolint:staticcheck // TODO (ASC) fix grpc.Dial is deprecated
if err != nil {
log.Fatal("Error dialing: ", err)
}
Expand Down Expand Up @@ -319,7 +319,7 @@ apm_config:
}
defer r.KillAgent()

conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", port), grpc.WithBlock(), grpc.WithTransportCredentials(insecure.NewCredentials())) //nolint:staticcheck // TODO (ASC) fix grpc.Dial is deprecated
if err != nil {
log.Fatal("Error dialing: ", err)
}
Expand Down
2 changes: 1 addition & 1 deletion comp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ Package logsagentpipeline contains logs agent pipeline component

### [comp/otelcol/provider](https://pkg.go.dev/github.com/DataDog/datadog-agent/comp/otelcol/provider)


Package provider TBD

## [comp/process](https://pkg.go.dev/github.com/DataDog/datadog-agent/comp/process) (Component Bundle)

Expand Down
44 changes: 22 additions & 22 deletions comp/core/config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,34 +29,34 @@ replace (
)

require (
github.com/DataDog/datadog-agent/cmd/agent/common/path v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/cmd/agent/common/path v0.55.0-rc.2
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.2
github.com/DataDog/viper v1.13.5
github.com/stretchr/testify v1.9.0
go.uber.org/fx v1.18.2
)

require (
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.2 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion comp/core/flare/builder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ go 1.21.0

replace github.com/DataDog/datadog-agent/comp/def => ../../../def

require github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1
require github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2
4 changes: 2 additions & 2 deletions comp/core/flare/types/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ replace (
)

require (
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.2
go.uber.org/fx v1.18.2
)

require (
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/dig v1.17.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions comp/core/hostname/hostnameinterface/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ replace (
)

require (
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.2
github.com/stretchr/testify v1.9.0
go.uber.org/fx v1.18.2
)

require (
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down
46 changes: 23 additions & 23 deletions comp/core/log/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,35 +35,35 @@ replace (
)

require (
github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/logs v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/logs v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.2
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // v2.6
github.com/stretchr/testify v1.9.0
go.uber.org/fx v1.18.2
)

require (
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-go/v5 v5.5.0 // indirect
github.com/DataDog/go-sqllexer v0.0.12 // indirect
github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect
Expand Down
18 changes: 9 additions & 9 deletions comp/core/secrets/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ replace (
)

require (
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.2
github.com/benbjohnson/clock v1.3.0
github.com/stretchr/testify v1.9.0
go.uber.org/fx v1.18.2
Expand All @@ -31,9 +31,9 @@ require (
)

require (
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
Expand Down
46 changes: 23 additions & 23 deletions comp/core/status/statusimpl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -33,35 +33,35 @@ replace (
)

require (
github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/status v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/flavor v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1
github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1
github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.2
github.com/DataDog/datadog-agent/comp/core/flare/types v0.55.0-rc.2
github.com/DataDog/datadog-agent/comp/core/status v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/flavor v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.2
github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.2
github.com/stretchr/testify v1.9.0
go.uber.org/fx v1.18.2
golang.org/x/text v0.14.0
)

require (
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1 // indirect
github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/config/env v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/system/socket v0.55.0-rc.2 // indirect
github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.2 // indirect
github.com/DataDog/viper v1.13.5 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
Expand Down
Loading

0 comments on commit e7a0bfa

Please sign in to comment.