From d31dc909c5c8290da1f37c7eca41884a98f83725 Mon Sep 17 00:00:00 2001 From: Nicolas Schweitzer Date: Mon, 3 Jun 2024 12:11:10 +0200 Subject: [PATCH 1/6] [release] Update release.json and Go modules for 6/7.55.0-rc.1 (#26224) --- cmd/agent/common/path/go.mod | 8 +- comp/core/config/go.mod | 44 ++--- comp/core/flare/builder/go.mod | 2 +- comp/core/flare/types/go.mod | 4 +- comp/core/hostname/hostnameinterface/go.mod | 4 +- comp/core/log/go.mod | 46 ++--- comp/core/secrets/go.mod | 18 +- comp/core/status/statusimpl/go.mod | 46 ++--- comp/core/telemetry/go.mod | 4 +- comp/forwarder/defaultforwarder/go.mod | 60 +++--- .../orchestrator/orchestratorinterface/go.mod | 60 +++--- comp/logs/agent/config/go.mod | 40 ++-- comp/otelcol/collector-contrib/impl/go.mod | 2 +- comp/otelcol/logsagentpipeline/go.mod | 80 ++++---- .../logsagentpipelineimpl/go.mod | 90 ++++----- .../exporter/datadogexporter/go.mod | 122 ++++++------ .../exporter/logsagentexporter/go.mod | 46 ++--- .../exporter/serializerexporter/go.mod | 84 ++++---- .../otlp/components/metricsclient/go.mod | 2 +- .../otlp/components/statsprocessor/go.mod | 18 +- comp/otelcol/otlp/testutil/go.mod | 30 +-- comp/otelcol/provider/impl/go.mod | 102 +++++----- comp/serializer/compression/go.mod | 36 ++-- go.mod | 182 +++++++++--------- pkg/aggregator/ckey/go.mod | 4 +- pkg/api/go.mod | 40 ++-- pkg/config/env/go.mod | 10 +- pkg/config/logs/go.mod | 6 +- pkg/config/model/go.mod | 4 +- pkg/config/remote/go.mod | 20 +- pkg/config/setup/go.mod | 40 ++-- pkg/config/utils/go.mod | 32 +-- pkg/gohai/go.mod | 4 +- pkg/logs/auditor/go.mod | 46 ++--- pkg/logs/client/go.mod | 62 +++--- pkg/logs/diagnostic/go.mod | 50 ++--- pkg/logs/message/go.mod | 42 ++-- pkg/logs/metrics/go.mod | 8 +- pkg/logs/pipeline/go.mod | 78 ++++---- pkg/logs/processor/go.mod | 60 +++--- pkg/logs/sds/go.mod | 52 ++--- pkg/logs/sender/go.mod | 62 +++--- pkg/logs/sources/go.mod | 40 ++-- pkg/logs/util/testutils/go.mod | 42 ++-- pkg/metrics/go.mod | 24 +-- pkg/orchestrator/model/go.mod | 4 +- pkg/process/util/api/go.mod | 8 +- pkg/security/seclwin/go.mod | 2 +- pkg/serializer/go.mod | 80 ++++---- pkg/tagset/go.mod | 2 +- pkg/telemetry/go.mod | 6 +- pkg/trace/go.mod | 14 +- pkg/trace/stats/oteltest/go.mod | 16 +- pkg/util/cgroups/go.mod | 6 +- pkg/util/filesystem/go.mod | 4 +- pkg/util/flavor/go.mod | 30 +-- pkg/util/fxutil/go.mod | 2 +- pkg/util/grpc/go.mod | 6 +- pkg/util/hostname/validate/go.mod | 4 +- pkg/util/http/go.mod | 6 +- pkg/util/log/go.mod | 2 +- pkg/util/system/go.mod | 12 +- pkg/util/uuid/go.mod | 6 +- pkg/util/winutil/go.mod | 4 +- release.json | 18 +- test/fakeintake/go.mod | 4 +- test/new-e2e/go.mod | 14 +- 67 files changed, 1053 insertions(+), 1053 deletions(-) diff --git a/cmd/agent/common/path/go.mod b/cmd/agent/common/path/go.mod index 80f1ae0214de1e..f1820d47af45f3 100644 --- a/cmd/agent/common/path/go.mod +++ b/cmd/agent/common/path/go.mod @@ -10,14 +10,14 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 + 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 golang.org/x/sys v0.19.0 ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // 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 diff --git a/comp/core/config/go.mod b/comp/core/config/go.mod index 45f927629d5843..4458349890e951 100644 --- a/comp/core/config/go.mod +++ b/comp/core/config/go.mod @@ -29,34 +29,34 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/cmd/agent/common/path v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 + 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/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.0.0-00010101000000-000000000000 // indirect - github.com/DataDog/datadog-agent/comp/core/flare/types v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect + 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/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect diff --git a/comp/core/flare/builder/go.mod b/comp/core/flare/builder/go.mod index e473b8a68e6f8d..3b605c9d43b542 100644 --- a/comp/core/flare/builder/go.mod +++ b/comp/core/flare/builder/go.mod @@ -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-devel +require github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 diff --git a/comp/core/flare/types/go.mod b/comp/core/flare/types/go.mod index fe9b957a655756..64971fadbdb385 100644 --- a/comp/core/flare/types/go.mod +++ b/comp/core/flare/types/go.mod @@ -8,12 +8,12 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/flare/builder v0.0.0-00010101000000-000000000000 + github.com/DataDog/datadog-agent/comp/core/flare/builder v0.55.0-rc.1 go.uber.org/fx v1.18.2 ) require ( - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // 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 diff --git a/comp/core/hostname/hostnameinterface/go.mod b/comp/core/hostname/hostnameinterface/go.mod index 1b03f6b99f4677..11874c8449463c 100644 --- a/comp/core/hostname/hostnameinterface/go.mod +++ b/comp/core/hostname/hostnameinterface/go.mod @@ -8,13 +8,13 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 go.uber.org/fx v1.18.2 ) require ( - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // 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 diff --git a/comp/core/log/go.mod b/comp/core/log/go.mod index 534839c27e9c58..b8df0176b6181e 100644 --- a/comp/core/log/go.mod +++ b/comp/core/log/go.mod @@ -35,35 +35,35 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/logs v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/trace v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + 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/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.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // 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/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-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 diff --git a/comp/core/secrets/go.mod b/comp/core/secrets/go.mod index acb42d6a398ed3..46a23493313671 100644 --- a/comp/core/secrets/go.mod +++ b/comp/core/secrets/go.mod @@ -16,12 +16,12 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/flare/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 + 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/benbjohnson/clock v1.3.0 github.com/stretchr/testify v1.9.0 go.uber.org/fx v1.18.2 @@ -31,9 +31,9 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/core/flare/builder v0.0.0-00010101000000-000000000000 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect + 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/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 diff --git a/comp/core/status/statusimpl/go.mod b/comp/core/status/statusimpl/go.mod index 6b0e67ad49a60e..d13bc25dc346d0 100644 --- a/comp/core/status/statusimpl/go.mod +++ b/comp/core/status/statusimpl/go.mod @@ -33,35 +33,35 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/flare/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/flavor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + 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/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.0.0-00010101000000-000000000000 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + 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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/comp/core/telemetry/go.mod b/comp/core/telemetry/go.mod index 7aaa5580935446..d9e66caec4fb9f 100644 --- a/comp/core/telemetry/go.mod +++ b/comp/core/telemetry/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1 github.com/prometheus/client_golang v1.17.0 github.com/prometheus/client_model v0.5.0 github.com/stretchr/testify v1.9.0 @@ -19,7 +19,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/comp/forwarder/defaultforwarder/go.mod b/comp/forwarder/defaultforwarder/go.mod index 38cd52436dcce2..2ee9fd6f6916cb 100644 --- a/comp/forwarder/defaultforwarder/go.mod +++ b/comp/forwarder/defaultforwarder/go.mod @@ -46,22 +46,22 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/log 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/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/config/utils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/status/health v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/common v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/filesystem 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/http v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 github.com/golang/protobuf v1.5.3 github.com/hashicorp/go-multierror v1.1.1 github.com/stretchr/testify v1.9.0 @@ -71,20 +71,20 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/logs v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/env v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/logs 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/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/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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/comp/forwarder/orchestrator/orchestratorinterface/go.mod b/comp/forwarder/orchestrator/orchestratorinterface/go.mod index bd5982f5aafef9..abec2ba93035fc 100644 --- a/comp/forwarder/orchestrator/orchestratorinterface/go.mod +++ b/comp/forwarder/orchestrator/orchestratorinterface/go.mod @@ -48,7 +48,7 @@ replace ( ) -require github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.54.0-rc.2 +require github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.55.0-rc.1 // Internal deps fix version replace ( @@ -59,35 +59,35 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/core/log 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/core/status 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/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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/status/health 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/backoff v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/common 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/fxutil 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/http 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/comp/logs/agent/config/go.mod b/comp/logs/agent/config/go.mod index 5e43dd57227f82..1084c66699a7a3 100644 --- a/comp/logs/agent/config/go.mod +++ b/comp/logs/agent/config/go.mod @@ -32,32 +32,32 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config 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/config/utils 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/pointer v0.55.0-rc.1 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/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // 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/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/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/pkg/version v0.55.0-rc.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/comp/otelcol/collector-contrib/impl/go.mod b/comp/otelcol/collector-contrib/impl/go.mod index 1e16361461976d..07866d5ef31fa7 100644 --- a/comp/otelcol/collector-contrib/impl/go.mod +++ b/comp/otelcol/collector-contrib/impl/go.mod @@ -15,7 +15,7 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def v0.55.0-rc.1 github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.100.0 github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector v0.100.0 github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector v0.100.0 diff --git a/comp/otelcol/logsagentpipeline/go.mod b/comp/otelcol/logsagentpipeline/go.mod index 6c0ba0d794bfe1..fee929ad384c8c 100644 --- a/comp/otelcol/logsagentpipeline/go.mod +++ b/comp/otelcol/logsagentpipeline/go.mod @@ -53,49 +53,49 @@ replace ( github.com/DataDog/datadog-agent/pkg/version => ../../../pkg/version ) -require github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.54.0-rc.2 +require github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.55.0-rc.1 require ( github.com/DataDog/agent-payload/v5 v5.0.106 // indirect - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface 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/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/logs/agent/config 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/auditor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/status/health 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/backoff 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/fxutil 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/http 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/startstop v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect diff --git a/comp/otelcol/logsagentpipeline/logsagentpipelineimpl/go.mod b/comp/otelcol/logsagentpipeline/logsagentpipelineimpl/go.mod index 79e9cb985232ba..8969484d58ad48 100644 --- a/comp/otelcol/logsagentpipeline/logsagentpipelineimpl/go.mod +++ b/comp/otelcol/logsagentpipeline/logsagentpipelineimpl/go.mod @@ -55,26 +55,26 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/testutil v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline 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/logs/auditor v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/status/health 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/startstop v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/testutil v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 go.uber.org/fx v1.18.2 go.uber.org/zap v1.27.0 @@ -82,31 +82,31 @@ require ( require ( github.com/DataDog/agent-payload/v5 v5.0.106 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/logs v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/env v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/logs v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/backoff 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/http 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect diff --git a/comp/otelcol/otlp/components/exporter/datadogexporter/go.mod b/comp/otelcol/otlp/components/exporter/datadogexporter/go.mod index b5466332a71329..2f7a7910ce90bf 100644 --- a/comp/otelcol/otlp/components/exporter/datadogexporter/go.mod +++ b/comp/otelcol/otlp/components/exporter/datadogexporter/go.mod @@ -78,13 +78,13 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter v0.54.0-rc.1 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/serializer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/serializer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.16.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.16.0 github.com/stretchr/testify v1.9.0 @@ -105,60 +105,60 @@ require ( require ( github.com/DataDog/agent-payload/v5 v5.0.114 // indirect - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/serializer/compression v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/process/util/api v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/tagger/types v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/buf v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/json v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/core/log 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/core/status 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/forwarder/defaultforwarder v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/serializer/compression v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/aggregator/ckey 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/auditor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/process/util/api 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/status/health v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/tagger/types v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/tagset 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/backoff v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/buf v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/common 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/fxutil v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/http v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/json 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/sort v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/startstop v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/datadog-api-client-go/v2 v2.25.0 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect diff --git a/comp/otelcol/otlp/components/exporter/logsagentexporter/go.mod b/comp/otelcol/otlp/components/exporter/logsagentexporter/go.mod index 83939e378bbbcc..eb37c41d86b59c 100644 --- a/comp/otelcol/otlp/components/exporter/logsagentexporter/go.mod +++ b/comp/otelcol/otlp/components/exporter/logsagentexporter/go.mod @@ -37,11 +37,11 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.16.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.14.0 github.com/stormcat24/protodep v0.1.8 @@ -52,24 +52,24 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/datadog-api-client-go/v2 v2.13.0 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/DataDog/zstd v1.5.2 // indirect diff --git a/comp/otelcol/otlp/components/exporter/serializerexporter/go.mod b/comp/otelcol/otlp/components/exporter/serializerexporter/go.mod index 6d39cc94c30dc0..87c1bbe62224d0 100644 --- a/comp/otelcol/otlp/components/exporter/serializerexporter/go.mod +++ b/comp/otelcol/otlp/components/exporter/serializerexporter/go.mod @@ -57,11 +57,11 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/serializer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/serializer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagset v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.16.1 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.14.0 github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.14.0 @@ -84,43 +84,43 @@ require ( require ( github.com/DataDog/agent-payload/v5 v5.0.114 // indirect - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/serializer/compression v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/process/util/api v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/tagger/types v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/buf v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/json v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/core/log 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/core/status 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/forwarder/defaultforwarder v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/serializer/compression v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/aggregator/ckey 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/process/util/api v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/status/health v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/tagger/types 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/backoff v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/buf v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/common 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/fxutil 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/http v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/json 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/sort 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect github.com/DataDog/sketches-go v1.4.4 // indirect github.com/DataDog/viper v1.13.5 // indirect diff --git a/comp/otelcol/otlp/components/metricsclient/go.mod b/comp/otelcol/otlp/components/metricsclient/go.mod index 63a50b83205045..bd9c5202be7b77 100644 --- a/comp/otelcol/otlp/components/metricsclient/go.mod +++ b/comp/otelcol/otlp/components/metricsclient/go.mod @@ -5,7 +5,7 @@ go 1.21.0 replace github.com/DataDog/datadog-agent/pkg/trace => ../../../../../pkg/trace require ( - github.com/DataDog/datadog-agent/pkg/trace v0.52.1 + github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.1 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/otel v1.26.0 diff --git a/comp/otelcol/otlp/components/statsprocessor/go.mod b/comp/otelcol/otlp/components/statsprocessor/go.mod index c8dc840c096832..9d50862ed3c564 100644 --- a/comp/otelcol/otlp/components/statsprocessor/go.mod +++ b/comp/otelcol/otlp/components/statsprocessor/go.mod @@ -15,9 +15,9 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient v0.0.0-00010101000000-000000000000 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/trace v0.52.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.1 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.16.1 github.com/stretchr/testify v1.9.0 @@ -27,12 +27,12 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/cgroups v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/obfuscate 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/cgroups 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/go-sqllexer v0.0.12 // indirect github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect github.com/DataDog/sketches-go v1.4.2 // indirect diff --git a/comp/otelcol/otlp/testutil/go.mod b/comp/otelcol/otlp/testutil/go.mod index 9fd6dc1454a1ad..750d557c5edcfb 100644 --- a/comp/otelcol/otlp/testutil/go.mod +++ b/comp/otelcol/otlp/testutil/go.mod @@ -28,25 +28,25 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 + 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 go.opentelemetry.io/collector/pdata v1.4.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/comp/otelcol/provider/impl/go.mod b/comp/otelcol/provider/impl/go.mod index bdcf7cb9ddd43c..e330980cea9edf 100644 --- a/comp/otelcol/provider/impl/go.mod +++ b/comp/otelcol/provider/impl/go.mod @@ -5,7 +5,7 @@ go 1.21.0 replace github.com/DataDog/datadog-agent/comp/otelcol/provider/def => ../def require ( - github.com/DataDog/datadog-agent/comp/otelcol/provider/def v0.0.0-00010101000000-000000000000 + github.com/DataDog/datadog-agent/comp/otelcol/provider/def v0.55.0-rc.1 github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datadogexporter v0.100.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/confmap v0.100.0 @@ -27,56 +27,56 @@ require ( require ( cloud.google.com/go/compute/metadata v0.3.0 // indirect github.com/DataDog/agent-payload/v5 v5.0.114 // indirect - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl v0.54.0-rc.2.0.20240502211937-f7706eb2beae // indirect - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/trace v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/cgroups v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/core/log 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/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/logs/agent/config v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/auditor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/status/health 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/trace v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/cgroups 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/fxutil 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/http 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/startstop v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/datadog-api-client-go/v2 v2.25.0 // indirect github.com/DataDog/datadog-go/v5 v5.5.0 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect diff --git a/comp/serializer/compression/go.mod b/comp/serializer/compression/go.mod index 8dc326ae316607..d1d47487623c73 100644 --- a/comp/serializer/compression/go.mod +++ b/comp/serializer/compression/go.mod @@ -30,29 +30,29 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config 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/zstd v1.5.5 go.uber.org/fx v1.18.2 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // 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/config/setup 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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/go.mod b/go.mod index 615eb59a4cbbde..3d41c56345cb8b 100644 --- a/go.mod +++ b/go.mod @@ -127,15 +127,15 @@ require ( code.cloudfoundry.org/lager v2.0.0+incompatible github.com/CycloneDX/cyclonedx-go v0.8.0 github.com/DataDog/appsec-internal-go v1.4.2 - github.com/DataDog/datadog-agent/pkg/gohai v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/security/secl v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/trace v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/cgroups v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/gohai v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/obfuscate v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/security/secl v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/cgroups 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/pointer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/DataDog/datadog-operator v0.7.1-0.20240522081847-e83dd785258a github.com/DataDog/ebpf-manager v0.6.0 @@ -605,84 +605,84 @@ require github.com/lorenzosaino/go-sysctl v0.3.1 require ( github.com/DATA-DOG/go-sqlmock v1.5.2 github.com/DataDog/agent-payload/v5 v5.0.118 - github.com/DataDog/datadog-agent/cmd/agent/common/path v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/flare/builder v0.0.0-00010101000000-000000000000 - github.com/DataDog/datadog-agent/comp/core/flare/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/status/statusimpl v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel - github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/netflow/payload v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/impl v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl v0.54.0-rc.2.0.20240502211937-f7706eb2beae - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/datadogexporter v0.0.0-00010101000000-000000000000 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/otelcol/provider/def v0.0.0-00010101000000-000000000000 - github.com/DataDog/datadog-agent/comp/otelcol/provider/impl v0.0.0-00010101000000-000000000000 - github.com/DataDog/datadog-agent/comp/serializer/compression v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/api v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/logs v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/remote v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/errors v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/util/testutils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/networkdevice/profile v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/process/util/api v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/security/seclwin v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/serializer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagger/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/cache v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/flavor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/grpc v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/json v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/testutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/uuid v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + github.com/DataDog/datadog-agent/cmd/agent/common/path v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/flare/builder 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/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/status v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/status/statusimpl v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/netflow/payload v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/def v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/collector-contrib/impl v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/datadogexporter v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/provider/def v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/otelcol/provider/impl v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/serializer/compression v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/api v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/collector/check/defaults 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/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/remote v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/errors v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/auditor v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/pipeline v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/util/testutils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/networkdevice/profile v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/process/util/api v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/security/seclwin v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/serializer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/status/health v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagger/types v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagset v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/cache v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/common v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/executable v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/filesystem 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/util/grpc v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/http v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/json 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/sort v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/startstop v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/testutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/uuid v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 github.com/DataDog/go-libddwaf/v2 v2.3.1 github.com/DataDog/go-sqllexer v0.0.12 github.com/Datadog/dublin-traceroute v0.0.1 @@ -766,10 +766,10 @@ require ( github.com/Azure/go-autorest/tracing v0.6.0 // indirect github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/Code-Hex/go-generics-cache v1.3.1 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/buf v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/buf v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/statstracker 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-api-client-go/v2 v2.25.0 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.16.0 // indirect diff --git a/pkg/aggregator/ckey/go.mod b/pkg/aggregator/ckey/go.mod index 8be23a7fbd710f..0d95933154d264 100644 --- a/pkg/aggregator/ckey/go.mod +++ b/pkg/aggregator/ckey/go.mod @@ -8,8 +8,8 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/tagset v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/sort v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 github.com/twmb/murmur3 v1.1.8 ) diff --git a/pkg/api/go.mod b/pkg/api/go.mod index 7dae1c5aa1251b..93d69028531561 100644 --- a/pkg/api/go.mod +++ b/pkg/api/go.mod @@ -33,30 +33,30 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config 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/utils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/filesystem 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/system v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // 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/setup 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/fxutil 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/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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/config/env/go.mod b/pkg/config/env/go.mod index a4e01466aa1f80..9c6300d372cc98 100644 --- a/pkg/config/env/go.mod +++ b/pkg/config/env/go.mod @@ -11,15 +11,15 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/filesystem 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/system/socket v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // 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 diff --git a/pkg/config/logs/go.mod b/pkg/config/logs/go.mod index 36b748233c48c6..0cfbf17006e25c 100644 --- a/pkg/config/logs/go.mod +++ b/pkg/config/logs/go.mod @@ -9,9 +9,9 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/config/model 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/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/stretchr/testify v1.9.0 ) diff --git a/pkg/config/model/go.mod b/pkg/config/model/go.mod index 47845fbec2e8bb..a90369fa6eae85 100644 --- a/pkg/config/model/go.mod +++ b/pkg/config/model/go.mod @@ -9,7 +9,7 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/DataDog/viper v1.13.5 github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 github.com/spf13/afero v1.1.2 @@ -19,7 +19,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.4.7 // indirect diff --git a/pkg/config/remote/go.mod b/pkg/config/remote/go.mod index 50c71a0af2f4cd..e5b47052c0bb7b 100644 --- a/pkg/config/remote/go.mod +++ b/pkg/config/remote/go.mod @@ -20,14 +20,14 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/grpc v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/uuid v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/grpc v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/http 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/uuid v0.55.0-rc.1 github.com/Masterminds/semver v1.5.0 github.com/benbjohnson/clock v1.3.0 github.com/pkg/errors v0.9.1 @@ -39,7 +39,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/cache v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/cache v0.55.0-rc.1 // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect @@ -56,7 +56,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/DataDog/go-tuf v1.1.0-0.5.2 github.com/DataDog/viper v1.13.5 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/pkg/config/setup/go.mod b/pkg/config/setup/go.mod index 5f7c72b2ffadc9..236a09f7ebd667 100644 --- a/pkg/config/setup/go.mod +++ b/pkg/config/setup/go.mod @@ -30,31 +30,31 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/collector/check/defaults 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/util/executable v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/hostname/validate 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/optional v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/system v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 gopkg.in/yaml.v2 v2.4.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/flare/builder v0.0.0-00010101000000-000000000000 // indirect - github.com/DataDog/datadog-agent/comp/core/flare/types v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect + 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/telemetry 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/fxutil 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/socket v0.55.0-rc.1 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/pkg/config/utils/go.mod b/pkg/config/utils/go.mod index a39cbce46793eb..1c974efc7e28ba 100644 --- a/pkg/config/utils/go.mod +++ b/pkg/config/utils/go.mod @@ -29,26 +29,26 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/secrets 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/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // 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/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/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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/pkg/gohai/go.mod b/pkg/gohai/go.mod index bf58f5e9923b59..fb609a2ad351c2 100644 --- a/pkg/gohai/go.mod +++ b/pkg/gohai/go.mod @@ -5,7 +5,7 @@ module github.com/DataDog/datadog-agent/pkg/gohai go 1.21.0 require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/moby/sys/mountinfo v0.7.1 github.com/shirou/gopsutil/v3 v3.24.1 @@ -14,7 +14,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/kr/pretty v0.3.1 // indirect diff --git a/pkg/logs/auditor/go.mod b/pkg/logs/auditor/go.mod index 1c87cb9ab046a4..029a738f2e3786 100644 --- a/pkg/logs/auditor/go.mod +++ b/pkg/logs/auditor/go.mod @@ -37,33 +37,33 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/status/health v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/statstracker 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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/logs/client/go.mod b/pkg/logs/client/go.mod index d022834d48c238..2b36d0cf6f96b6 100644 --- a/pkg/logs/client/go.mod +++ b/pkg/logs/client/go.mod @@ -43,42 +43,42 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/util/testutils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/util/testutils v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/http v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 golang.org/x/net v0.24.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/env 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/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/fxutil 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/statstracker 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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/pkg/logs/diagnostic/go.mod b/pkg/logs/diagnostic/go.mod index 2f75d08579d757..b660838c7cc834 100644 --- a/pkg/logs/diagnostic/go.mod +++ b/pkg/logs/diagnostic/go.mod @@ -39,35 +39,35 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/fxutil 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/statstracker 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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/logs/message/go.mod b/pkg/logs/message/go.mod index 77b62428d065ca..7c5a36663bf25d 100644 --- a/pkg/logs/message/go.mod +++ b/pkg/logs/message/go.mod @@ -35,31 +35,31 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/statstracker 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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/logs/metrics/go.mod b/pkg/logs/metrics/go.mod index 0fdee9b2c4c800..f854afb1c38685 100644 --- a/pkg/logs/metrics/go.mod +++ b/pkg/logs/metrics/go.mod @@ -10,14 +10,14 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // 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/util/fxutil v0.55.0-rc.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/pkg/logs/pipeline/go.mod b/pkg/logs/pipeline/go.mod index 67fa037fe935c0..de09c37b076b67 100644 --- a/pkg/logs/pipeline/go.mod +++ b/pkg/logs/pipeline/go.mod @@ -51,20 +51,20 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/auditor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/processor v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sender v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/startstop v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/auditor v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/processor v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sender v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/status/health 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/startstop v0.55.0-rc.1 github.com/hashicorp/go-multierror v1.1.1 github.com/stretchr/testify v1.9.0 go.uber.org/atomic v1.11.0 @@ -72,31 +72,31 @@ require ( require ( github.com/DataDog/agent-payload/v5 v5.0.106 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/env 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/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/backoff 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/fxutil 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/http 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect diff --git a/pkg/logs/processor/go.mod b/pkg/logs/processor/go.mod index 5588f3c93a3f98..595455a4d6453f 100644 --- a/pkg/logs/processor/go.mod +++ b/pkg/logs/processor/go.mod @@ -43,40 +43,40 @@ replace ( require ( github.com/DataDog/agent-payload/v5 v5.0.106 - github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sds v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/diagnostic v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sds v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/fxutil 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect diff --git a/pkg/logs/sds/go.mod b/pkg/logs/sds/go.mod index 49a94bf7dab634..72a064ed8188a8 100644 --- a/pkg/logs/sds/go.mod +++ b/pkg/logs/sds/go.mod @@ -44,37 +44,37 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/DataDog/dd-sensitive-data-scanner/sds-go/go v0.0.0-20240419161837-f1b2f553edfe github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/logs/agent/config 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/fxutil 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/pkg/logs/sender/go.mod b/pkg/logs/sender/go.mod index 12151c1fcc1a18..245e0a4d140c33 100644 --- a/pkg/logs/sender/go.mod +++ b/pkg/logs/sender/go.mod @@ -44,42 +44,42 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/client v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/message v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/client v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/message v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/statusinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/benbjohnson/clock v1.3.5 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/metrics v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/env 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/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/metrics v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/backoff 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/fxutil 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/http 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/statstracker 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/pkg/version v0.55.0-rc.1 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/pkg/logs/sources/go.mod b/pkg/logs/sources/go.mod index 4fbdef62032548..0ac25fa0a0ca71 100644 --- a/pkg/logs/sources/go.mod +++ b/pkg/logs/sources/go.mod @@ -34,30 +34,30 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/logs/agent/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/statstracker v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils 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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/logs/util/testutils/go.mod b/pkg/logs/util/testutils/go.mod index 8cb33a3f9de1c8..cc3e6eb277de4a 100644 --- a/pkg/logs/util/testutils/go.mod +++ b/pkg/logs/util/testutils/go.mod @@ -36,29 +36,29 @@ replace ( github.com/DataDog/datadog-agent/pkg/version => ../../../version ) -require github.com/DataDog/datadog-agent/pkg/logs/sources v0.54.0-rc.2 +require github.com/DataDog/datadog-agent/pkg/logs/sources v0.55.0-rc.1 require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/logs/agent/config v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/logs/status/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/statstracker v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/comp/logs/agent/config 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/config/setup v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/logs/status/utils 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/statstracker 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/pkg/version v0.55.0-rc.1 // 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 diff --git a/pkg/metrics/go.mod b/pkg/metrics/go.mod index d87ae6fa6a0960..928804dd0928d0 100644 --- a/pkg/metrics/go.mod +++ b/pkg/metrics/go.mod @@ -19,24 +19,24 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagger/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/buf v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagger/types v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagset v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/buf v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.14.0 github.com/stretchr/testify v1.9.0 go.uber.org/atomic v1.11.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 // 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/util/fxutil 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/sort v0.55.0-rc.1 // indirect github.com/DataDog/sketches-go v1.4.4 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/pkg/orchestrator/model/go.mod b/pkg/orchestrator/model/go.mod index 29f18fc5e14b6b..943e046f55c9da 100644 --- a/pkg/orchestrator/model/go.mod +++ b/pkg/orchestrator/model/go.mod @@ -8,12 +8,12 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/patrickmn/go-cache v2.1.0+incompatible ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect go.uber.org/atomic v1.11.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/pkg/process/util/api/go.mod b/pkg/process/util/api/go.mod index 69f4c64d09e15c..533d1c186965c7 100644 --- a/pkg/process/util/api/go.mod +++ b/pkg/process/util/api/go.mod @@ -11,15 +11,15 @@ replace ( require ( github.com/DataDog/agent-payload/v5 v5.0.114 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 github.com/gogo/protobuf v1.3.2 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // 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/util/fxutil v0.55.0-rc.1 // indirect github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a // indirect github.com/DataDog/zstd v1.4.8 // indirect github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f // indirect diff --git a/pkg/security/seclwin/go.mod b/pkg/security/seclwin/go.mod index 253891724ffdc7..9fdc2b1f42f5d3 100644 --- a/pkg/security/seclwin/go.mod +++ b/pkg/security/seclwin/go.mod @@ -5,7 +5,7 @@ go 1.21 replace github.com/DataDog/datadog-agent/pkg/security/secl => ../secl require ( - github.com/DataDog/datadog-agent/pkg/security/secl v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/security/secl v0.55.0-rc.1 github.com/hashicorp/golang-lru/v2 v2.0.7 ) diff --git a/pkg/serializer/go.mod b/pkg/serializer/go.mod index 91d6eece826f13..36e7f1bbec0e79 100644 --- a/pkg/serializer/go.mod +++ b/pkg/serializer/go.mod @@ -56,21 +56,21 @@ replace ( require ( github.com/DataDog/agent-payload/v5 v5.0.114 - github.com/DataDog/datadog-agent/comp/core/config v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.54.0-rc.2 - github.com/DataDog/datadog-agent/comp/serializer/compression v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/aggregator/ckey v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/metrics v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/process/util/api v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagger/types v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/tagset v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/telemetry v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/json v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/config v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/forwarder/orchestrator/orchestratorinterface v0.55.0-rc.1 + github.com/DataDog/datadog-agent/comp/serializer/compression v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/aggregator/ckey 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/metrics v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/process/util/api v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagger/types v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/tagset v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/telemetry v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/json v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.14.0 github.com/gogo/protobuf v1.3.2 github.com/json-iterator/go v1.1.12 @@ -81,31 +81,31 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/core/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/status v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/comp/def v0.55.0-devel // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/utils v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/status/health v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/backoff v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/buf v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/common v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/http v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/log 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/core/status 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/config/env v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/config/utils v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/orchestrator/model v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/status/health v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/backoff v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/buf v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/common 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/fxutil 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/http 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/sort 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/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect github.com/DataDog/sketches-go v1.4.4 // indirect github.com/DataDog/viper v1.13.5 // indirect diff --git a/pkg/tagset/go.mod b/pkg/tagset/go.mod index 35879436d40381..167a013cf9da60 100644 --- a/pkg/tagset/go.mod +++ b/pkg/tagset/go.mod @@ -5,7 +5,7 @@ go 1.21.0 replace github.com/DataDog/datadog-agent/pkg/util/sort => ../util/sort/ require ( - github.com/DataDog/datadog-agent/pkg/util/sort v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/sort v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 github.com/twmb/murmur3 v1.1.8 ) diff --git a/pkg/telemetry/go.mod b/pkg/telemetry/go.mod index 5a90f1d12fe887..080bd36798826d 100644 --- a/pkg/telemetry/go.mod +++ b/pkg/telemetry/go.mod @@ -9,13 +9,13 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/comp/core/telemetry v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/core/telemetry v0.55.0-rc.1 go.uber.org/atomic v1.7.0 ) require ( - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/fxutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 // indirect + github.com/DataDog/datadog-agent/pkg/util/fxutil v0.55.0-rc.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/pkg/trace/go.mod b/pkg/trace/go.mod index ed24cbcf3f4673..d65fc133c1da72 100644 --- a/pkg/trace/go.mod +++ b/pkg/trace/go.mod @@ -10,13 +10,13 @@ go 1.21.0 replace github.com/docker/distribution => github.com/docker/distribution v2.8.1+incompatible require ( - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/cgroups v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/obfuscate v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/cgroups 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/pointer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.14.0 github.com/DataDog/sketches-go v1.4.2 diff --git a/pkg/trace/stats/oteltest/go.mod b/pkg/trace/stats/oteltest/go.mod index a80e3716e4ea3d..cf90dc2d1e240b 100644 --- a/pkg/trace/stats/oteltest/go.mod +++ b/pkg/trace/stats/oteltest/go.mod @@ -3,8 +3,8 @@ module github.com/DataDog/datadog-agent/pkg/trace/stats/oteltest go 1.21.0 require ( - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/trace v0.0.0-00010101000000-000000000000 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/trace v0.55.0-rc.1 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.14.0 github.com/google/go-cmp v0.6.0 @@ -17,12 +17,12 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/obfuscate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/cgroups v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/obfuscate 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/cgroups 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/go-sqllexer v0.0.12 // indirect github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect github.com/DataDog/sketches-go v1.4.2 // indirect diff --git a/pkg/util/cgroups/go.mod b/pkg/util/cgroups/go.mod index 89f8d80d238fc5..b3130cc0e29fed 100644 --- a/pkg/util/cgroups/go.mod +++ b/pkg/util/cgroups/go.mod @@ -9,8 +9,8 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.1 github.com/containerd/cgroups/v3 v3.0.2 github.com/google/go-cmp v0.5.8 github.com/karrick/godirwalk v1.17.0 @@ -18,7 +18,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/coreos/go-systemd/v22 v22.3.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/pkg/util/filesystem/go.mod b/pkg/util/filesystem/go.mod index f5a024b6b1cbad..c2285654f2fd46 100644 --- a/pkg/util/filesystem/go.mod +++ b/pkg/util/filesystem/go.mod @@ -9,7 +9,7 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 github.com/shirou/gopsutil/v3 v3.23.9 github.com/stretchr/testify v1.9.0 @@ -17,7 +17,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-ole/go-ole v1.2.6 // indirect diff --git a/pkg/util/flavor/go.mod b/pkg/util/flavor/go.mod index 162df0c896fe4f..ad34072f68da81 100644 --- a/pkg/util/flavor/go.mod +++ b/pkg/util/flavor/go.mod @@ -28,25 +28,25 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/setup v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/config/setup v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/comp/core/secrets v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/collector/check/defaults v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/env v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/executable v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/hostname/validate v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/system/socket v0.54.0-rc.2 // indirect - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/core/secrets 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/viper v1.13.5 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect diff --git a/pkg/util/fxutil/go.mod b/pkg/util/fxutil/go.mod index 16d5de81796670..ed432459ed356f 100644 --- a/pkg/util/fxutil/go.mod +++ b/pkg/util/fxutil/go.mod @@ -3,7 +3,7 @@ module github.com/DataDog/datadog-agent/pkg/util/fxutil go 1.21.0 require ( - github.com/DataDog/datadog-agent/comp/def v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/def v0.55.0-rc.1 github.com/spf13/cobra v1.7.0 github.com/stretchr/testify v1.9.0 go.uber.org/fx v1.18.2 diff --git a/pkg/util/grpc/go.mod b/pkg/util/grpc/go.mod index d6a0eed581dee2..1b2c767115ec25 100644 --- a/pkg/util/grpc/go.mod +++ b/pkg/util/grpc/go.mod @@ -9,8 +9,8 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/grpc-ecosystem/go-grpc-middleware v1.2.0 github.com/stretchr/testify v1.9.0 @@ -19,7 +19,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect diff --git a/pkg/util/hostname/validate/go.mod b/pkg/util/hostname/validate/go.mod index 895e1b734afb50..795670039080a8 100644 --- a/pkg/util/hostname/validate/go.mod +++ b/pkg/util/hostname/validate/go.mod @@ -8,12 +8,12 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/pkg/util/http/go.mod b/pkg/util/http/go.mod index df532ce677fe41..d3f7077137466e 100644 --- a/pkg/util/http/go.mod +++ b/pkg/util/http/go.mod @@ -10,14 +10,14 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/config/model v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/config/model v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/stretchr/testify v1.9.0 golang.org/x/net v0.24.0 ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/DataDog/viper v1.13.5 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/pkg/util/log/go.mod b/pkg/util/log/go.mod index e524e2b120a5dd..c2ab5f575892fe 100644 --- a/pkg/util/log/go.mod +++ b/pkg/util/log/go.mod @@ -5,7 +5,7 @@ go 1.21.0 replace github.com/DataDog/datadog-agent/pkg/util/scrubber => ../scrubber require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/stretchr/testify v1.9.0 go.uber.org/atomic v1.11.0 diff --git a/pkg/util/system/go.mod b/pkg/util/system/go.mod index b2a3b744c0907d..95dda2dd299a0a 100644 --- a/pkg/util/system/go.mod +++ b/pkg/util/system/go.mod @@ -12,11 +12,11 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/filesystem v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/testutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/winutil v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/filesystem 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/pointer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/testutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/winutil v0.55.0-rc.1 github.com/shirou/gopsutil/v3 v3.23.12 github.com/stretchr/testify v1.9.0 go.uber.org/atomic v1.11.0 @@ -24,7 +24,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-ole/go-ole v1.2.6 // indirect diff --git a/pkg/util/uuid/go.mod b/pkg/util/uuid/go.mod index e87836975c1198..61ccc499ce60f2 100644 --- a/pkg/util/uuid/go.mod +++ b/pkg/util/uuid/go.mod @@ -9,14 +9,14 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/cache v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/cache v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/shirou/gopsutil/v3 v3.24.1 golang.org/x/sys v0.19.0 ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect diff --git a/pkg/util/winutil/go.mod b/pkg/util/winutil/go.mod index 31a4f499458ca3..3a433ef572e249 100644 --- a/pkg/util/winutil/go.mod +++ b/pkg/util/winutil/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/log v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/log v0.55.0-rc.1 github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/fsnotify/fsnotify v1.7.0 github.com/stretchr/testify v1.9.0 @@ -17,7 +17,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/scrubber v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/pkg/util/scrubber v0.55.0-rc.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/release.json b/release.json index ccaf25cca5e0d6..18338dfe02fb27 100644 --- a/release.json +++ b/release.json @@ -44,13 +44,13 @@ "WINDOWS_APMINJECT_SHASUM": "c5c228f6030ce2e19b8bfb28bd054dc246c7f1c799431e73018e6cb46ee59d2f" }, "release-a6": { - "INTEGRATIONS_CORE_VERSION": "7.54.0-rc.2", - "OMNIBUS_SOFTWARE_VERSION": "7.54.0-rc.1", - "OMNIBUS_RUBY_VERSION": "7.54.0-rc.1", + "INTEGRATIONS_CORE_VERSION": "7.55.0-rc.1", + "OMNIBUS_SOFTWARE_VERSION": "7.55.0-rc.1", + "OMNIBUS_RUBY_VERSION": "7.55.0-rc.1", "JMXFETCH_VERSION": "0.49.1", "JMXFETCH_HASH": "6c5d4ae2f858aa57fac7f92d6615931bf95f9a99c92979090f2de9d4b3c1f0d3", "SECURITY_AGENT_POLICIES_VERSION": "v0.55.0", - "MACOS_BUILD_VERSION": "6.54.0-rc.1", + "MACOS_BUILD_VERSION": "6.55.0-rc.1", "WINDOWS_DDNPM_DRIVER": "release-signed", "WINDOWS_DDNPM_VERSION": "2.6.0", "WINDOWS_DDNPM_SHASUM": "b1611ad4ceb8366c88767aeb638abefb226081efbf546b8b886952dd1b18ec05", @@ -59,13 +59,13 @@ "WINDOWS_DDPROCMON_SHASUM": "7c13ba75f7a30704a6a4082e4cffc819c846fd6061c53372c8b9908fee11d621" }, "release-a7": { - "INTEGRATIONS_CORE_VERSION": "7.54.0-rc.2", - "OMNIBUS_SOFTWARE_VERSION": "7.54.0-rc.1", - "OMNIBUS_RUBY_VERSION": "7.54.0-rc.1", + "INTEGRATIONS_CORE_VERSION": "7.55.0-rc.1", + "OMNIBUS_SOFTWARE_VERSION": "7.55.0-rc.1", + "OMNIBUS_RUBY_VERSION": "7.55.0-rc.1", "JMXFETCH_VERSION": "0.49.1", "JMXFETCH_HASH": "6c5d4ae2f858aa57fac7f92d6615931bf95f9a99c92979090f2de9d4b3c1f0d3", "SECURITY_AGENT_POLICIES_VERSION": "v0.55.0", - "MACOS_BUILD_VERSION": "7.54.0-rc.1", + "MACOS_BUILD_VERSION": "7.55.0-rc.1", "WINDOWS_DDNPM_DRIVER": "release-signed", "WINDOWS_DDNPM_VERSION": "2.6.0", "WINDOWS_DDNPM_SHASUM": "b1611ad4ceb8366c88767aeb638abefb226081efbf546b8b886952dd1b18ec05", @@ -103,4 +103,4 @@ "dca-1.9.0": { "SECURITY_AGENT_POLICIES_VERSION": "v0.3" } -} +} \ No newline at end of file diff --git a/test/fakeintake/go.mod b/test/fakeintake/go.mod index 24e41c1526198d..340e73347339f3 100644 --- a/test/fakeintake/go.mod +++ b/test/fakeintake/go.mod @@ -10,8 +10,8 @@ replace ( require ( github.com/DataDog/agent-payload/v5 v5.0.106 - github.com/DataDog/datadog-agent/comp/netflow/payload v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 + github.com/DataDog/datadog-agent/comp/netflow/payload v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 github.com/benbjohnson/clock v1.3.5 github.com/cenkalti/backoff/v4 v4.2.1 github.com/google/uuid v1.3.0 diff --git a/test/new-e2e/go.mod b/test/new-e2e/go.mod index a824cfdb546fb5..d140c4369d564f 100644 --- a/test/new-e2e/go.mod +++ b/test/new-e2e/go.mod @@ -18,10 +18,10 @@ replace ( require ( github.com/DataDog/agent-payload/v5 v5.0.106 - github.com/DataDog/datadog-agent/pkg/util/pointer v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/util/testutil v0.54.0-rc.2 - github.com/DataDog/datadog-agent/pkg/version v0.54.0-rc.2 - github.com/DataDog/datadog-agent/test/fakeintake v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/pointer v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/util/testutil v0.55.0-rc.1 + github.com/DataDog/datadog-agent/pkg/version v0.55.0-rc.1 + github.com/DataDog/datadog-agent/test/fakeintake v0.55.0-rc.1 github.com/DataDog/datadog-api-client-go v1.16.0 github.com/DataDog/datadog-api-client-go/v2 v2.26.0 // Are you bumping github.com/DataDog/test-infra-definitions ? @@ -61,7 +61,7 @@ require ( require ( dario.cat/mergo v1.0.0 // indirect github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect - github.com/DataDog/datadog-agent/pkg/proto v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/proto v0.55.0-rc.1 github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a // indirect github.com/DataDog/zstd v1.5.2 // indirect github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f // indirect @@ -239,7 +239,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/pkg/util/optional v0.54.0-rc.2 + github.com/DataDog/datadog-agent/pkg/util/optional v0.55.0-rc.1 github.com/mitchellh/mapstructure v1.5.0 github.com/pulumi/pulumi-aws/sdk/v6 v6.25.0 github.com/pulumi/pulumi-awsx/sdk/v2 v2.5.0 @@ -249,7 +249,7 @@ require ( ) require ( - github.com/DataDog/datadog-agent/comp/netflow/payload v0.54.0-rc.2 // indirect + github.com/DataDog/datadog-agent/comp/netflow/payload v0.55.0-rc.1 // indirect github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 // indirect github.com/pulumi/pulumi-docker/sdk/v4 v4.5.1 // indirect From d3371d730e77f682cb75a8ca0e3cadbf545cdd3e Mon Sep 17 00:00:00 2001 From: Guy Arbitman Date: Mon, 3 Jun 2024 13:46:14 +0300 Subject: [PATCH 2/6] usm: kafka: tests: Improve cleanup to solve flakiness (#26225) --- pkg/network/usm/kafka_monitor_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkg/network/usm/kafka_monitor_test.go b/pkg/network/usm/kafka_monitor_test.go index 883fe45b6c98ec..8301f5bbd954ba 100644 --- a/pkg/network/usm/kafka_monitor_test.go +++ b/pkg/network/usm/kafka_monitor_test.go @@ -854,8 +854,11 @@ func (can *CannedClientServer) runServer() { }) go func() { - defer f.Close() - defer listener.Close() + defer func() { + listener.Close() + f.Close() + can.done <- true + }() conn, err := listener.Accept() require.NoError(can.t, err) @@ -891,8 +894,6 @@ func (can *CannedClientServer) runServer() { if prevconn != nil { prevconn.Close() } - - can.done <- true }() } From 1cb775ac4873a09738b31521815c6c3a6f59f451 Mon Sep 17 00:00:00 2001 From: dkirov-dd <166512750+dkirov-dd@users.noreply.github.com> Date: Mon, 3 Jun 2024 18:33:31 +0200 Subject: [PATCH 3/6] [AI-3657] Add Metrics Origins metadata for python checks (#25051) --- pkg/aggregator/sender.go | 2 +- pkg/aggregator/sender_test.go | 15 + pkg/metrics/metricsource.go | 712 +++++++++++++++++- .../internal/metrics/origin_mapping.go | 428 ++++++++++- ...thon_metrics_origins-fc6e79b40c33d94d.yaml | 10 + 5 files changed, 1161 insertions(+), 6 deletions(-) create mode 100644 releasenotes/notes/python_metrics_origins-fc6e79b40c33d94d.yaml diff --git a/pkg/aggregator/sender.go b/pkg/aggregator/sender.go index 9fbf77465884b8..26d08f4982c4c0 100644 --- a/pkg/aggregator/sender.go +++ b/pkg/aggregator/sender.go @@ -201,7 +201,7 @@ func (s *checkSender) sendMetricSample( Timestamp: timestamp, FlushFirstValue: flushFirstValue, NoIndex: s.noIndex || noIndex, - Source: metrics.CoreCheckToMetricSource(checkid.IDToCheckName(s.id)), + Source: metrics.CheckNameToMetricSource(checkid.IDToCheckName(s.id)), } if hostname == "" && !s.defaultHostnameDisabled { diff --git a/pkg/aggregator/sender_test.go b/pkg/aggregator/sender_test.go index 47de231e2c9315..a5e756dfffb2d0 100644 --- a/pkg/aggregator/sender_test.go +++ b/pkg/aggregator/sender_test.go @@ -371,6 +371,21 @@ func TestSenderPopulatingMetricSampleSource(t *testing.T) { checkID: "uptime:1", expectedMetricSource: metrics.MetricSourceUptime, }, + { + name: "checkid http_check:1 should have MetricSourceHTTPCheck", + checkID: "http_check:1", + expectedMetricSource: metrics.MetricSourceHTTPCheck, + }, + { + name: "checkid postgres:1 should have MetricSourcePostgres", + checkID: "postgres:1", + expectedMetricSource: metrics.MetricSourcePostgres, + }, + { + name: "checkid tls:1 should have MetricSourceTLS", + checkID: "tls:1", + expectedMetricSource: metrics.MetricSourceTLS, + }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { diff --git a/pkg/metrics/metricsource.go b/pkg/metrics/metricsource.go index 9c7338598543cf..fcc7cde2a2a52d 100644 --- a/pkg/metrics/metricsource.go +++ b/pkg/metrics/metricsource.go @@ -60,6 +60,149 @@ const ( MetricSourceDisk MetricSourceNetwork MetricSourceSnmp + + // Python Checks + MetricSourceActiveDirectory + MetricSourceActivemqXML + MetricSourceAerospike + MetricSourceAirflow + MetricSourceAmazonMsk + MetricSourceAmbari + MetricSourceApache + MetricSourceArangodb + MetricSourceArgocd + MetricSourceAspdotnet + MetricSourceAviVantage + MetricSourceAzureIotEdge + MetricSourceBoundary + MetricSourceBtrfs + MetricSourceCacti + MetricSourceCalico + MetricSourceCassandraNodetool + MetricSourceCeph + MetricSourceCertManager + MetricSourceCilium + MetricSourceCitrixHypervisor + MetricSourceClickhouse + MetricSourceCloudFoundryAPI + MetricSourceCockroachdb + MetricSourceConsul + MetricSourceCoredns + MetricSourceCouch + MetricSourceCouchbase + MetricSourceCrio + MetricSourceDirectory + MetricSourceDNSCheck + MetricSourceDotnetclr + MetricSourceDruid + MetricSourceEcsFargate + MetricSourceEksFargate + MetricSourceElastic + MetricSourceEnvoy + MetricSourceEtcd + MetricSourceExchangeServer + MetricSourceExternalDNS + MetricSourceFluentd + MetricSourceFoundationdb + MetricSourceGearmand + MetricSourceGitlab + MetricSourceGitlabRunner + MetricSourceGlusterfs + MetricSourceGoExpvar + MetricSourceGunicorn + MetricSourceHaproxy + MetricSourceHarbor + MetricSourceHdfsDatanode + MetricSourceHdfsNamenode + MetricSourceHTTPCheck + MetricSourceHyperv + MetricSourceIbmAce + MetricSourceIbmDb2 + MetricSourceIbmI + MetricSourceIbmMq + MetricSourceIbmWas + MetricSourceIis + MetricSourceImpala + MetricSourceIstio + MetricSourceKafkaConsumer + MetricSourceKong + MetricSourceKubeAPIserverMetrics + MetricSourceKubeControllerManager + MetricSourceKubeDNS + MetricSourceKubeMetricsServer + MetricSourceKubeProxy + MetricSourceKubeScheduler + MetricSourceKubelet + MetricSourceKubernetesState + MetricSourceKyototycoon + MetricSourceLighttpd + MetricSourceLinkerd + MetricSourceLinuxProcExtras + MetricSourceMapr + MetricSourceMapreduce + MetricSourceMarathon + MetricSourceMarklogic + MetricSourceMcache + MetricSourceMesosMaster + MetricSourceMesosSlave + MetricSourceMongo + MetricSourceMysql + MetricSourceNagios + MetricSourceNfsstat + MetricSourceNginx + MetricSourceNginxIngressController + MetricSourceOpenldap + MetricSourceOpenmetrics + MetricSourceOpenstack + MetricSourceOpenstackController + MetricSourceOracle + MetricSourcePdhCheck + MetricSourcePgbouncer + MetricSourcePhpFpm + MetricSourcePostfix + MetricSourcePostgres + MetricSourcePowerdnsRecursor + MetricSourceProcess + MetricSourcePrometheus + MetricSourceProxysql + MetricSourcePulsar + MetricSourceRabbitmq + MetricSourceRedisdb + MetricSourceRethinkdb + MetricSourceRiak + MetricSourceRiakcs + MetricSourceSapHana + MetricSourceScylla + MetricSourceSilk + MetricSourceSinglestore + MetricSourceSnowflake + MetricSourceSpark + MetricSourceSqlserver + MetricSourceSquid + MetricSourceSSHCheck + MetricSourceStatsd + MetricSourceSupervisord + MetricSourceSystemCore + MetricSourceSystemSwap + MetricSourceTCPCheck + MetricSourceTeamcity + MetricSourceTeradata + MetricSourceTLS + MetricSourceTokumx + MetricSourceTrafficServer + MetricSourceTwemproxy + MetricSourceTwistlock + MetricSourceVarnish + MetricSourceVault + MetricSourceVertica + MetricSourceVoltdb + MetricSourceVsphere + MetricSourceWin32EventLog + MetricSourceWindowsPerformanceCounters + MetricSourceWindowsService + MetricSourceWmiCheck + MetricSourceYarn + MetricSourceZk ) // String returns a string representation of MetricSource @@ -155,14 +298,295 @@ func (ms MetricSource) String() string { return "snmp" case MetricSourceInternal: return "internal" + case MetricSourceActiveDirectory: + return "active_directory" + case MetricSourceActivemqXML: + return "activemq_xml" + case MetricSourceAerospike: + return "aerospike" + case MetricSourceAirflow: + return "airflow" + case MetricSourceAmazonMsk: + return "amazon_msk" + case MetricSourceAmbari: + return "ambari" + case MetricSourceApache: + return "apache" + case MetricSourceArangodb: + return "arangodb" + case MetricSourceArgocd: + return "argocd" + case MetricSourceAspdotnet: + return "aspdotnet" + case MetricSourceAviVantage: + return "avi_vantage" + case MetricSourceAzureIotEdge: + return "azure_iot_edge" + case MetricSourceBoundary: + return "boundary" + case MetricSourceBtrfs: + return "btrfs" + case MetricSourceCacti: + return "cacti" + case MetricSourceCalico: + return "calico" + case MetricSourceCassandraNodetool: + return "cassandra_nodetool" + case MetricSourceCeph: + return "ceph" + case MetricSourceCertManager: + return "cert_manager" + case MetricSourceCilium: + return "cilium" + case MetricSourceCitrixHypervisor: + return "citrix_hypervisor" + case MetricSourceClickhouse: + return "clickhouse" + case MetricSourceCloudFoundryAPI: + return "cloud_foundry_api" + case MetricSourceCockroachdb: + return "cockroachdb" + case MetricSourceConsul: + return "consul" + case MetricSourceCoredns: + return "coredns" + case MetricSourceCouch: + return "couch" + case MetricSourceCouchbase: + return "couchbase" + case MetricSourceCrio: + return "crio" + case MetricSourceDirectory: + return "directory" + case MetricSourceDNSCheck: + return "dns_check" + case MetricSourceDotnetclr: + return "dotnetclr" + case MetricSourceDruid: + return "druid" + case MetricSourceEcsFargate: + return "ecs_fargate" + case MetricSourceEksFargate: + return "eks_fargate" + case MetricSourceElastic: + return "elastic" + case MetricSourceEnvoy: + return "envoy" + case MetricSourceEtcd: + return "etcd" + case MetricSourceExchangeServer: + return "exchange_server" + case MetricSourceExternalDNS: + return "external_dns" + case MetricSourceFluentd: + return "fluentd" + case MetricSourceFoundationdb: + return "foundationdb" + case MetricSourceGearmand: + return "gearmand" + case MetricSourceGitlab: + return "gitlab" + case MetricSourceGitlabRunner: + return "gitlab_runner" + case MetricSourceGlusterfs: + return "glusterfs" + case MetricSourceGoExpvar: + return "go_expvar" + case MetricSourceGunicorn: + return "gunicorn" + case MetricSourceHaproxy: + return "haproxy" + case MetricSourceHarbor: + return "harbor" + case MetricSourceHdfsDatanode: + return "hdfs_datanode" + case MetricSourceHdfsNamenode: + return "hdfs_namenode" + case MetricSourceHTTPCheck: + return "http_check" + case MetricSourceHyperv: + return "hyperv" + case MetricSourceIbmAce: + return "ibm_ace" + case MetricSourceIbmDb2: + return "ibm_db2" + case MetricSourceIbmI: + return "ibm_i" + case MetricSourceIbmMq: + return "ibm_mq" + case MetricSourceIbmWas: + return "ibm_was" + case MetricSourceIis: + return "iis" + case MetricSourceImpala: + return "impala" + case MetricSourceIstio: + return "istio" + case MetricSourceKafkaConsumer: + return "kafka_consumer" + case MetricSourceKong: + return "kong" + case MetricSourceKubeAPIserverMetrics: + return "kube_apiserver_metrics" + case MetricSourceKubeControllerManager: + return "kube_controller_manager" + case MetricSourceKubeDNS: + return "kube_dns" + case MetricSourceKubeMetricsServer: + return "kube_metrics_server" + case MetricSourceKubeProxy: + return "kube_proxy" + case MetricSourceKubeScheduler: + return "kube_scheduler" + case MetricSourceKubelet: + return "kubelet" + case MetricSourceKubernetesState: + return "kubernetes_state" + case MetricSourceKyototycoon: + return "kyototycoon" + case MetricSourceLighttpd: + return "lighttpd" + case MetricSourceLinkerd: + return "linkerd" + case MetricSourceLinuxProcExtras: + return "linux_proc_extras" + case MetricSourceMapr: + return "mapr" + case MetricSourceMapreduce: + return "mapreduce" + case MetricSourceMarathon: + return "marathon" + case MetricSourceMarklogic: + return "marklogic" + case MetricSourceMcache: + return "mcache" + case MetricSourceMesosMaster: + return "mesos_master" + case MetricSourceMesosSlave: + return "mesos_slave" + case MetricSourceMongo: + return "mongo" + case MetricSourceMysql: + return "mysql" + case MetricSourceNagios: + return "nagios" + case MetricSourceNfsstat: + return "nfsstat" + case MetricSourceNginx: + return "nginx" + case MetricSourceNginxIngressController: + return "nginx_ingress_controller" + case MetricSourceOpenldap: + return "openldap" + case MetricSourceOpenmetrics: + return "openmetrics" + case MetricSourceOpenstack: + return "openstack" + case MetricSourceOpenstackController: + return "openstack_controller" + case MetricSourceOracle: + return "oracle" + case MetricSourcePdhCheck: + return "pdh_check" + case MetricSourcePgbouncer: + return "pgbouncer" + case MetricSourcePhpFpm: + return "php_fpm" + case MetricSourcePostfix: + return "postfix" + case MetricSourcePostgres: + return "postgres" + case MetricSourcePowerdnsRecursor: + return "powerdns_recursor" + case MetricSourceProcess: + return "process" + case MetricSourcePrometheus: + return "prometheus" + case MetricSourceProxysql: + return "proxysql" + case MetricSourcePulsar: + return "pulsar" + case MetricSourceRabbitmq: + return "rabbitmq" + case MetricSourceRedisdb: + return "redisdb" + case MetricSourceRethinkdb: + return "rethinkdb" + case MetricSourceRiak: + return "riak" + case MetricSourceRiakcs: + return "riakcs" + case MetricSourceSapHana: + return "sap_hana" + case MetricSourceScylla: + return "scylla" + case MetricSourceSilk: + return "silk" + case MetricSourceSinglestore: + return "singlestore" + case MetricSourceSnowflake: + return "snowflake" + case MetricSourceSpark: + return "spark" + case MetricSourceSqlserver: + return "sqlserver" + case MetricSourceSquid: + return "squid" + case MetricSourceSSHCheck: + return "ssh_check" + case MetricSourceStatsd: + return "statsd" + case MetricSourceSupervisord: + return "supervisord" + case MetricSourceSystemCore: + return "system_core" + case MetricSourceSystemSwap: + return "system_swap" + case MetricSourceTCPCheck: + return "tcp_check" + case MetricSourceTeamcity: + return "teamcity" + case MetricSourceTeradata: + return "teradata" + case MetricSourceTLS: + return "tls" + case MetricSourceTokumx: + return "tokumx" + case MetricSourceTrafficServer: + return "traffic_server" + case MetricSourceTwemproxy: + return "twemproxy" + case MetricSourceTwistlock: + return "twistlock" + case MetricSourceVarnish: + return "varnish" + case MetricSourceVault: + return "vault" + case MetricSourceVertica: + return "vertica" + case MetricSourceVoltdb: + return "voltdb" + case MetricSourceVsphere: + return "vsphere" + case MetricSourceWin32EventLog: + return "win32_event_log" + case MetricSourceWindowsPerformanceCounters: + return "windows_performance_counters" + case MetricSourceWindowsService: + return "windows_service" + case MetricSourceWmiCheck: + return "wmi_check" + case MetricSourceYarn: + return "yarn" + case MetricSourceZk: + return "zk" default: return "" - } } -// CoreCheckToMetricSource returns a MetricSource given the name -func CoreCheckToMetricSource(name string) MetricSource { +// CheckNameToMetricSource returns a MetricSource given the name +func CheckNameToMetricSource(name string) MetricSource { switch name { case "container": return MetricSourceContainer @@ -220,6 +644,288 @@ func CoreCheckToMetricSource(name string) MetricSource { return MetricSourceSnmp case "telemetry": return MetricSourceInternal + case "active_directory": + return MetricSourceActiveDirectory + case "activemq_xml": + return MetricSourceActivemqXML + case "aerospike": + return MetricSourceAerospike + case "airflow": + return MetricSourceAirflow + case "amazon_msk": + return MetricSourceAmazonMsk + case "ambari": + return MetricSourceAmbari + case "apache": + return MetricSourceApache + case "arangodb": + return MetricSourceArangodb + case "argocd": + return MetricSourceArgocd + case "aspdotnet": + return MetricSourceAspdotnet + case "avi_vantage": + return MetricSourceAviVantage + case "azure_iot_edge": + return MetricSourceAzureIotEdge + case "boundary": + return MetricSourceBoundary + case "btrfs": + return MetricSourceBtrfs + case "cacti": + return MetricSourceCacti + case "calico": + return MetricSourceCalico + case "cassandra_nodetool": + return MetricSourceCassandraNodetool + case "ceph": + return MetricSourceCeph + case "cert_manager": + return MetricSourceCertManager + case "cilium": + return MetricSourceCilium + case "citrix_hypervisor": + return MetricSourceCitrixHypervisor + case "clickhouse": + return MetricSourceClickhouse + case "cloud_foundry_api": + return MetricSourceCloudFoundryAPI + case "cockroachdb": + return MetricSourceCockroachdb + case "consul": + return MetricSourceConsul + case "coredns": + return MetricSourceCoredns + case "couch": + return MetricSourceCouch + case "couchbase": + return MetricSourceCouchbase + case "crio": + return MetricSourceCrio + case "directory": + return MetricSourceDirectory + case "dns_check": + return MetricSourceDNSCheck + case "dotnetclr": + return MetricSourceDotnetclr + case "druid": + return MetricSourceDruid + case "ecs_fargate": + return MetricSourceEcsFargate + case "eks_fargate": + return MetricSourceEksFargate + case "elastic": + return MetricSourceElastic + case "envoy": + return MetricSourceEnvoy + case "etcd": + return MetricSourceEtcd + case "exchange_server": + return MetricSourceExchangeServer + case "external_dns": + return MetricSourceExternalDNS + case "fluentd": + return MetricSourceFluentd + case "foundationdb": + return MetricSourceFoundationdb + case "gearmand": + return MetricSourceGearmand + case "gitlab": + return MetricSourceGitlab + case "gitlab_runner": + return MetricSourceGitlabRunner + case "glusterfs": + return MetricSourceGlusterfs + case "go_expvar": + return MetricSourceGoExpvar + case "gunicorn": + return MetricSourceGunicorn + case "haproxy": + return MetricSourceHaproxy + case "harbor": + return MetricSourceHarbor + case "hdfs_datanode": + return MetricSourceHdfsDatanode + case "hdfs_namenode": + return MetricSourceHdfsNamenode + case "http_check": + return MetricSourceHTTPCheck + case "hyperv": + return MetricSourceHyperv + case "ibm_ace": + return MetricSourceIbmAce + case "ibm_db2": + return MetricSourceIbmDb2 + case "ibm_i": + return MetricSourceIbmI + case "ibm_mq": + return MetricSourceIbmMq + case "ibm_was": + return MetricSourceIbmWas + case "iis": + return MetricSourceIis + case "impala": + return MetricSourceImpala + case "istio": + return MetricSourceIstio + case "kafka_consumer": + return MetricSourceKafkaConsumer + case "kong": + return MetricSourceKong + case "kube_apiserver_metrics": + return MetricSourceKubeAPIserverMetrics + case "kube_controller_manager": + return MetricSourceKubeControllerManager + case "kube_dns": + return MetricSourceKubeDNS + case "kube_metrics_server": + return MetricSourceKubeMetricsServer + case "kube_proxy": + return MetricSourceKubeProxy + case "kube_scheduler": + return MetricSourceKubeScheduler + case "kubelet": + return MetricSourceKubelet + case "kubernetes_state": + return MetricSourceKubernetesState + case "kyototycoon": + return MetricSourceKyototycoon + case "lighttpd": + return MetricSourceLighttpd + case "linkerd": + return MetricSourceLinkerd + case "linux_proc_extras": + return MetricSourceLinuxProcExtras + case "mapr": + return MetricSourceMapr + case "mapreduce": + return MetricSourceMapreduce + case "marathon": + return MetricSourceMarathon + case "marklogic": + return MetricSourceMarklogic + case "mcache": + return MetricSourceMcache + case "mesos_master": + return MetricSourceMesosMaster + case "mesos_slave": + return MetricSourceMesosSlave + case "mongo": + return MetricSourceMongo + case "mysql": + return MetricSourceMysql + case "nagios": + return MetricSourceNagios + case "nfsstat": + return MetricSourceNfsstat + case "nginx": + return MetricSourceNginx + case "nginx_ingress_controller": + return MetricSourceNginxIngressController + case "openldap": + return MetricSourceOpenldap + case "openmetrics": + return MetricSourceOpenmetrics + case "openstack": + return MetricSourceOpenstack + case "openstack_controller": + return MetricSourceOpenstackController + case "oracle": + return MetricSourceOracle + case "pdh_check": + return MetricSourcePdhCheck + case "pgbouncer": + return MetricSourcePgbouncer + case "php_fpm": + return MetricSourcePhpFpm + case "postfix": + return MetricSourcePostfix + case "postgres": + return MetricSourcePostgres + case "powerdns_recursor": + return MetricSourcePowerdnsRecursor + case "process": + return MetricSourceProcess + case "prometheus": + return MetricSourcePrometheus + case "proxysql": + return MetricSourceProxysql + case "pulsar": + return MetricSourcePulsar + case "rabbitmq": + return MetricSourceRabbitmq + case "redisdb": + return MetricSourceRedisdb + case "rethinkdb": + return MetricSourceRethinkdb + case "riak": + return MetricSourceRiak + case "riakcs": + return MetricSourceRiakcs + case "sap_hana": + return MetricSourceSapHana + case "scylla": + return MetricSourceScylla + case "silk": + return MetricSourceSilk + case "singlestore": + return MetricSourceSinglestore + case "snowflake": + return MetricSourceSnowflake + case "spark": + return MetricSourceSpark + case "sqlserver": + return MetricSourceSqlserver + case "squid": + return MetricSourceSquid + case "ssh_check": + return MetricSourceSSHCheck + case "statsd": + return MetricSourceStatsd + case "supervisord": + return MetricSourceSupervisord + case "system_core": + return MetricSourceSystemCore + case "system_swap": + return MetricSourceSystemSwap + case "tcp_check": + return MetricSourceTCPCheck + case "teamcity": + return MetricSourceTeamcity + case "teradata": + return MetricSourceTeradata + case "tls": + return MetricSourceTLS + case "tokumx": + return MetricSourceTokumx + case "traffic_server": + return MetricSourceTrafficServer + case "twemproxy": + return MetricSourceTwemproxy + case "twistlock": + return MetricSourceTwistlock + case "varnish": + return MetricSourceVarnish + case "vault": + return MetricSourceVault + case "vertica": + return MetricSourceVertica + case "voltdb": + return MetricSourceVoltdb + case "vsphere": + return MetricSourceVsphere + case "win32_event_log": + return MetricSourceWin32EventLog + case "windows_performance_counters": + return MetricSourceWindowsPerformanceCounters + case "windows_service": + return MetricSourceWindowsService + case "wmi_check": + return MetricSourceWmiCheck + case "yarn": + return MetricSourceYarn + case "zk": + return MetricSourceZk default: return MetricSourceUnknown } diff --git a/pkg/serializer/internal/metrics/origin_mapping.go b/pkg/serializer/internal/metrics/origin_mapping.go index 77c9bd2f76f2e7..15fafee5532ae2 100644 --- a/pkg/serializer/internal/metrics/origin_mapping.go +++ b/pkg/serializer/internal/metrics/origin_mapping.go @@ -60,8 +60,150 @@ func metricSourceToOriginCategory(ms metrics.MetricSource) int32 { metrics.MetricSourceLoad, metrics.MetricSourceDisk, metrics.MetricSourceNetwork, - metrics.MetricSourceSnmp: - return 11 // integration_metrics + metrics.MetricSourceSnmp, + // Python Checks + metrics.MetricSourceActiveDirectory, + metrics.MetricSourceActivemqXML, + metrics.MetricSourceAerospike, + metrics.MetricSourceAirflow, + metrics.MetricSourceAmazonMsk, + metrics.MetricSourceAmbari, + metrics.MetricSourceApache, + metrics.MetricSourceArangodb, + metrics.MetricSourceArgocd, + metrics.MetricSourceAspdotnet, + metrics.MetricSourceAviVantage, + metrics.MetricSourceAzureIotEdge, + metrics.MetricSourceBoundary, + metrics.MetricSourceBtrfs, + metrics.MetricSourceCacti, + metrics.MetricSourceCalico, + metrics.MetricSourceCassandraNodetool, + metrics.MetricSourceCeph, + metrics.MetricSourceCertManager, + metrics.MetricSourceCilium, + metrics.MetricSourceCitrixHypervisor, + metrics.MetricSourceClickhouse, + metrics.MetricSourceCloudFoundryAPI, + metrics.MetricSourceCockroachdb, + metrics.MetricSourceConsul, + metrics.MetricSourceCoredns, + metrics.MetricSourceCouch, + metrics.MetricSourceCouchbase, + metrics.MetricSourceCrio, + metrics.MetricSourceDirectory, + metrics.MetricSourceDNSCheck, + metrics.MetricSourceDotnetclr, + metrics.MetricSourceDruid, + metrics.MetricSourceEcsFargate, + metrics.MetricSourceEksFargate, + metrics.MetricSourceElastic, + metrics.MetricSourceEnvoy, + metrics.MetricSourceEtcd, + metrics.MetricSourceExchangeServer, + metrics.MetricSourceExternalDNS, + metrics.MetricSourceFluentd, + metrics.MetricSourceFoundationdb, + metrics.MetricSourceGearmand, + metrics.MetricSourceGitlab, + metrics.MetricSourceGitlabRunner, + metrics.MetricSourceGlusterfs, + metrics.MetricSourceGoExpvar, + metrics.MetricSourceGunicorn, + metrics.MetricSourceHaproxy, + metrics.MetricSourceHarbor, + metrics.MetricSourceHdfsDatanode, + metrics.MetricSourceHdfsNamenode, + metrics.MetricSourceHTTPCheck, + metrics.MetricSourceHyperv, + metrics.MetricSourceIbmAce, + metrics.MetricSourceIbmDb2, + metrics.MetricSourceIbmI, + metrics.MetricSourceIbmMq, + metrics.MetricSourceIbmWas, + metrics.MetricSourceIis, + metrics.MetricSourceImpala, + metrics.MetricSourceIstio, + metrics.MetricSourceKafkaConsumer, + metrics.MetricSourceKong, + metrics.MetricSourceKubeAPIserverMetrics, + metrics.MetricSourceKubeControllerManager, + metrics.MetricSourceKubeDNS, + metrics.MetricSourceKubeMetricsServer, + metrics.MetricSourceKubeProxy, + metrics.MetricSourceKubeScheduler, + metrics.MetricSourceKubelet, + metrics.MetricSourceKubernetesState, + metrics.MetricSourceKyototycoon, + metrics.MetricSourceLighttpd, + metrics.MetricSourceLinkerd, + metrics.MetricSourceLinuxProcExtras, + metrics.MetricSourceMapr, + metrics.MetricSourceMapreduce, + metrics.MetricSourceMarathon, + metrics.MetricSourceMarklogic, + metrics.MetricSourceMcache, + metrics.MetricSourceMesosMaster, + metrics.MetricSourceMesosSlave, + metrics.MetricSourceMongo, + metrics.MetricSourceMysql, + metrics.MetricSourceNagios, + metrics.MetricSourceNfsstat, + metrics.MetricSourceNginx, + metrics.MetricSourceNginxIngressController, + metrics.MetricSourceOpenldap, + metrics.MetricSourceOpenmetrics, + metrics.MetricSourceOpenstack, + metrics.MetricSourceOpenstackController, + metrics.MetricSourceOracle, + metrics.MetricSourcePdhCheck, + metrics.MetricSourcePgbouncer, + metrics.MetricSourcePhpFpm, + metrics.MetricSourcePostfix, + metrics.MetricSourcePostgres, + metrics.MetricSourcePowerdnsRecursor, + metrics.MetricSourceProcess, + metrics.MetricSourcePrometheus, + metrics.MetricSourceProxysql, + metrics.MetricSourcePulsar, + metrics.MetricSourceRabbitmq, + metrics.MetricSourceRedisdb, + metrics.MetricSourceRethinkdb, + metrics.MetricSourceRiak, + metrics.MetricSourceRiakcs, + metrics.MetricSourceSapHana, + metrics.MetricSourceScylla, + metrics.MetricSourceSilk, + metrics.MetricSourceSinglestore, + metrics.MetricSourceSnowflake, + metrics.MetricSourceSpark, + metrics.MetricSourceSqlserver, + metrics.MetricSourceSquid, + metrics.MetricSourceSSHCheck, + metrics.MetricSourceStatsd, + metrics.MetricSourceSupervisord, + metrics.MetricSourceSystemCore, + metrics.MetricSourceSystemSwap, + metrics.MetricSourceTCPCheck, + metrics.MetricSourceTeamcity, + metrics.MetricSourceTeradata, + metrics.MetricSourceTLS, + metrics.MetricSourceTokumx, + metrics.MetricSourceTrafficServer, + metrics.MetricSourceTwemproxy, + metrics.MetricSourceTwistlock, + metrics.MetricSourceVarnish, + metrics.MetricSourceVault, + metrics.MetricSourceVertica, + metrics.MetricSourceVoltdb, + metrics.MetricSourceVsphere, + metrics.MetricSourceWin32EventLog, + metrics.MetricSourceWindowsPerformanceCounters, + metrics.MetricSourceWindowsService, + metrics.MetricSourceWmiCheck, + metrics.MetricSourceYarn, + metrics.MetricSourceZk: + return 11 // integrationMetrics default: return 0 } @@ -76,42 +218,324 @@ func metricSourceToOriginService(ms metrics.MetricSource) int32 { return 9 case metrics.MetricSourceUnknown: return 0 + case metrics.MetricSourceActiveDirectory: + return 10 + case metrics.MetricSourceActivemqXML: + return 11 case metrics.MetricSourceActivemq: return 12 + case metrics.MetricSourceAerospike: + return 13 + case metrics.MetricSourceAirflow: + return 14 + case metrics.MetricSourceAmazonMsk: + return 15 + case metrics.MetricSourceAmbari: + return 16 + case metrics.MetricSourceApache: + return 17 + case metrics.MetricSourceArangodb: + return 18 + case metrics.MetricSourceArgocd: + return 19 + case metrics.MetricSourceAspdotnet: + return 20 + case metrics.MetricSourceAviVantage: + return 21 + case metrics.MetricSourceAzureIotEdge: + return 22 + case metrics.MetricSourceBoundary: + return 23 + case metrics.MetricSourceBtrfs: + return 24 + case metrics.MetricSourceCacti: + return 25 + case metrics.MetricSourceCalico: + return 26 + case metrics.MetricSourceCassandraNodetool: + return 27 case metrics.MetricSourceCassandra: return 28 + case metrics.MetricSourceCeph: + return 29 + case metrics.MetricSourceCertManager: + return 30 + case metrics.MetricSourceCilium: + return 34 + case metrics.MetricSourceCitrixHypervisor: + return 36 + case metrics.MetricSourceClickhouse: + return 37 + case metrics.MetricSourceCloudFoundryAPI: + return 38 + case metrics.MetricSourceCockroachdb: + return 39 case metrics.MetricSourceConfluentPlatform: return 40 + case metrics.MetricSourceConsul: + return 41 + case metrics.MetricSourceCoredns: + return 42 + case metrics.MetricSourceCouch: + return 43 + case metrics.MetricSourceCouchbase: + return 44 + case metrics.MetricSourceCrio: + return 45 + case metrics.MetricSourceDirectory: + return 47 case metrics.MetricSourceDisk: return 48 + case metrics.MetricSourceDNSCheck: + return 49 + case metrics.MetricSourceDotnetclr: + return 50 + case metrics.MetricSourceDruid: + return 51 + case metrics.MetricSourceEcsFargate: + return 52 + case metrics.MetricSourceEksFargate: + return 53 + case metrics.MetricSourceElastic: + return 54 + case metrics.MetricSourceEnvoy: + return 55 + case metrics.MetricSourceEtcd: + return 56 + case metrics.MetricSourceExchangeServer: + return 57 + case metrics.MetricSourceExternalDNS: + return 58 + case metrics.MetricSourceFluentd: + return 60 + case metrics.MetricSourceFoundationdb: + return 61 + case metrics.MetricSourceGearmand: + return 62 + case metrics.MetricSourceGitlabRunner: + return 63 + case metrics.MetricSourceGitlab: + return 64 + case metrics.MetricSourceGlusterfs: + return 65 + case metrics.MetricSourceGoExpvar: + return 66 + case metrics.MetricSourceGunicorn: + return 67 + case metrics.MetricSourceHaproxy: + return 68 + case metrics.MetricSourceHarbor: + return 69 case metrics.MetricSourceHazelcast: return 70 + case metrics.MetricSourceHdfsDatanode: + return 71 + case metrics.MetricSourceHdfsNamenode: + return 72 case metrics.MetricSourceHive: return 73 case metrics.MetricSourceHivemq: return 74 + case metrics.MetricSourceHTTPCheck: + return 75 case metrics.MetricSourceHudi: return 76 + case metrics.MetricSourceHyperv: + return 77 + case metrics.MetricSourceIbmAce: + return 78 + case metrics.MetricSourceIbmDb2: + return 79 + case metrics.MetricSourceIbmI: + return 80 + case metrics.MetricSourceIbmMq: + return 81 + case metrics.MetricSourceIbmWas: + return 82 case metrics.MetricSourceIgnite: return 83 + case metrics.MetricSourceIis: + return 84 + case metrics.MetricSourceImpala: + return 85 + case metrics.MetricSourceIstio: + return 86 case metrics.MetricSourceJbossWildfly: return 87 + case metrics.MetricSourceKafkaConsumer: + return 89 case metrics.MetricSourceKafka: return 90 + case metrics.MetricSourceKong: + return 91 + case metrics.MetricSourceKubeAPIserverMetrics: + return 92 + case metrics.MetricSourceKubeControllerManager: + return 93 + case metrics.MetricSourceKubeDNS: + return 94 + case metrics.MetricSourceKubeMetricsServer: + return 95 + case metrics.MetricSourceKubeProxy: + return 96 + case metrics.MetricSourceKubeScheduler: + return 97 + case metrics.MetricSourceKubelet: + return 98 + case metrics.MetricSourceKubernetesState: + return 99 + case metrics.MetricSourceKyototycoon: + return 100 + case metrics.MetricSourceLighttpd: + return 101 + case metrics.MetricSourceLinkerd: + return 102 + case metrics.MetricSourceLinuxProcExtras: + return 103 + case metrics.MetricSourceMapr: + return 104 + case metrics.MetricSourceMapreduce: + return 105 + case metrics.MetricSourceMarathon: + return 106 + case metrics.MetricSourceMarklogic: + return 107 + case metrics.MetricSourceMcache: + return 108 + case metrics.MetricSourceMesosMaster: + return 109 + case metrics.MetricSourceMesosSlave: + return 110 + case metrics.MetricSourceMongo: + return 111 + case metrics.MetricSourceMysql: + return 112 + case metrics.MetricSourceNagios: + return 113 case metrics.MetricSourceNetwork: return 114 + case metrics.MetricSourceNfsstat: + return 115 + case metrics.MetricSourceNginxIngressController: + return 116 + case metrics.MetricSourceNginx: + return 117 + case metrics.MetricSourceOpenldap: + return 118 + case metrics.MetricSourceOpenmetrics: + return 119 + case metrics.MetricSourceOpenstackController: + return 120 + case metrics.MetricSourceOpenstack: + return 121 + case metrics.MetricSourceOracle: + return 122 + case metrics.MetricSourcePdhCheck: + return 124 + case metrics.MetricSourcePgbouncer: + return 125 + case metrics.MetricSourcePhpFpm: + return 126 + case metrics.MetricSourcePostfix: + return 127 + case metrics.MetricSourcePostgres: + return 128 + case metrics.MetricSourcePowerdnsRecursor: + return 129 case metrics.MetricSourcePresto: return 130 + case metrics.MetricSourceProcess: + return 131 + case metrics.MetricSourcePrometheus: + return 132 + case metrics.MetricSourceProxysql: + return 133 + case metrics.MetricSourcePulsar: + return 134 + case metrics.MetricSourceRabbitmq: + return 135 + case metrics.MetricSourceRedisdb: + return 136 + case metrics.MetricSourceRethinkdb: + return 137 + case metrics.MetricSourceRiak: + return 138 + case metrics.MetricSourceRiakcs: + return 139 + case metrics.MetricSourceSapHana: + return 140 + case metrics.MetricSourceScylla: + return 141 + case metrics.MetricSourceSilk: + return 143 + case metrics.MetricSourceSinglestore: + return 144 case metrics.MetricSourceSnmp: return 145 + case metrics.MetricSourceSnowflake: + return 146 case metrics.MetricSourceSolr: return 147 case metrics.MetricSourceSonarqube: return 148 + case metrics.MetricSourceSpark: + return 149 + case metrics.MetricSourceSqlserver: + return 150 + case metrics.MetricSourceSquid: + return 151 + case metrics.MetricSourceSSHCheck: + return 152 + case metrics.MetricSourceStatsd: + return 153 + case metrics.MetricSourceSupervisord: + return 154 + case metrics.MetricSourceSystemCore: + return 155 + case metrics.MetricSourceSystemSwap: + return 156 + case metrics.MetricSourceTCPCheck: + return 157 + case metrics.MetricSourceTeamcity: + return 158 + case metrics.MetricSourceTeradata: + return 160 + case metrics.MetricSourceTLS: + return 161 + case metrics.MetricSourceTokumx: + return 162 case metrics.MetricSourceTomcat: return 163 + case metrics.MetricSourceTrafficServer: + return 164 + case metrics.MetricSourceTwemproxy: + return 165 + case metrics.MetricSourceTwistlock: + return 166 + case metrics.MetricSourceVarnish: + return 167 + case metrics.MetricSourceVault: + return 168 + case metrics.MetricSourceVertica: + return 169 + case metrics.MetricSourceVoltdb: + return 170 + case metrics.MetricSourceVsphere: + return 171 case metrics.MetricSourceWeblogic: return 172 + case metrics.MetricSourceWin32EventLog: + return 173 + case metrics.MetricSourceWindowsPerformanceCounters: + return 174 + case metrics.MetricSourceWindowsService: + return 175 + case metrics.MetricSourceWmiCheck: + return 176 + case metrics.MetricSourceYarn: + return 177 + case metrics.MetricSourceZk: + return 178 case metrics.MetricSourceContainer: return 180 case metrics.MetricSourceContainerd: diff --git a/releasenotes/notes/python_metrics_origins-fc6e79b40c33d94d.yaml b/releasenotes/notes/python_metrics_origins-fc6e79b40c33d94d.yaml new file mode 100644 index 00000000000000..8eaa3443a06dfd --- /dev/null +++ b/releasenotes/notes/python_metrics_origins-fc6e79b40c33d94d.yaml @@ -0,0 +1,10 @@ +# Each section from every release note are combined when the +# CHANGELOG.rst is rendered. So the text needs to be worded so that +# it does not depend on any information only available in another +# section. This may mean repeating some details, but each section +# must be readable independently of the other. +# +# Each section note must be formatted as reStructuredText. +--- +other: + - Added metrics origins for python integrations. From 00e5b36bd6951d44c470abce29718b238b06e7d0 Mon Sep 17 00:00:00 2001 From: Kevin Fairise <132568982+KevinFairise2@users.noreply.github.com> Date: Tue, 4 Jun 2024 11:38:24 +0200 Subject: [PATCH 4/6] Fix and reenable AML e2e tests (#26249) --- .gitlab/e2e/e2e.yml | 6 +++++- .../log-agent/k8s-logs/file_tailing_cca_off_test.go | 2 -- .../log-agent/k8s-logs/file_tailing_test.go | 2 -- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab/e2e/e2e.yml b/.gitlab/e2e/e2e.yml index 959a9351896990..ad98b041333d02 100644 --- a/.gitlab/e2e/e2e.yml +++ b/.gitlab/e2e/e2e.yml @@ -245,7 +245,11 @@ new-e2e-npm-docker: EXTRA_PARAMS: --run "Test(ECSVM|EC2VMContainerized|EKSVM)Suite" new-e2e-aml: - extends: .new_e2e_template_needs_deb_windows_x64 + extends: .new_e2e_template + needs: + - deploy_deb_testing-a7_x64 + - deploy_windows_testing-a7 + - qa_agent rules: !reference [.on_aml_or_e2e_changes_or_manual] variables: TARGETS: ./tests/agent-metric-logs diff --git a/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_cca_off_test.go b/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_cca_off_test.go index e2c44ccf008cac..c5db1a47b1be26 100644 --- a/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_cca_off_test.go +++ b/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_cca_off_test.go @@ -17,7 +17,6 @@ import ( "github.com/DataDog/test-infra-definitions/components/datadog/kubernetesagentparams" - "github.com/DataDog/datadog-agent/pkg/util/testutil/flake" "github.com/DataDog/datadog-agent/test/new-e2e/pkg/e2e" "github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments" kindfilelogger "github.com/DataDog/datadog-agent/test/new-e2e/tests/agent-metric-logs/kindfilelogging" @@ -28,7 +27,6 @@ type k8sCCAOffSuite struct { } func TestK8sCCAOff(t *testing.T) { - flake.Mark(t) e2e.Run(t, &k8sCCAOffSuite{}, e2e.WithProvisioner(kindfilelogger.Provisioner(kindfilelogger.WithAgentOptions(kubernetesagentparams.WithoutLogsContainerCollectAll())))) } diff --git a/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_test.go b/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_test.go index df8e04a173b874..024fc3790eba86 100644 --- a/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_test.go +++ b/test/new-e2e/tests/agent-metric-logs/log-agent/k8s-logs/file_tailing_test.go @@ -17,7 +17,6 @@ import ( corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/DataDog/datadog-agent/pkg/util/testutil/flake" "github.com/DataDog/datadog-agent/test/new-e2e/pkg/e2e" "github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments" kindfilelogger "github.com/DataDog/datadog-agent/test/new-e2e/tests/agent-metric-logs/kindfilelogging" @@ -28,7 +27,6 @@ type k8sSuite struct { } func TestK8sSuite(t *testing.T) { - flake.Mark(t) e2e.Run(t, &k8sSuite{}, e2e.WithProvisioner(kindfilelogger.Provisioner())) } From 525470f2691d2bd4a82d8e0ff95ae530c261afd3 Mon Sep 17 00:00:00 2001 From: Nicolas Schweitzer Date: Tue, 4 Jun 2024 12:53:42 +0200 Subject: [PATCH 5/6] Minor fix on github wofklows (#26206) --- .github/workflows/chase_release_managers.yml | 4 ++-- .github/workflows/create_release_schedule.yml | 2 +- .github/workflows/external-contributor.yml | 4 ++-- .github/workflows/send-failure-summary-notification.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/chase_release_managers.yml b/.github/workflows/chase_release_managers.yml index 916ba1b713775b..b11b644cce6439 100644 --- a/.github/workflows/chase_release_managers.yml +++ b/.github/workflows/chase_release_managers.yml @@ -25,8 +25,8 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt -r tasks/libs/requirements-github.txt -r tasks/requirements-release-tasks.txt - - name: Create release schedule + pip install -r requirements.txt -r tasks/libs/requirements-github.txt -r tasks/requirements_release_tasks.txt + - name: Chase release managers env: ATLASSIAN_USERNAME : ${{ secrets.ATLASSIAN_USERNAME }} ATLASSIAN_PASSWORD : ${{ secrets.ATLASSIAN_PASSWORD }} diff --git a/.github/workflows/create_release_schedule.yml b/.github/workflows/create_release_schedule.yml index dd5cf3615a211e..a78aec8b5e7596 100644 --- a/.github/workflows/create_release_schedule.yml +++ b/.github/workflows/create_release_schedule.yml @@ -29,7 +29,7 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt -r tasks/libs/requirements-github.txt -r tasks/requirements-release-tasks.txt + pip install -r requirements.txt -r tasks/libs/requirements-github.txt -r tasks/requirements_release_tasks.txt - name: Create release schedule env: ATLASSIAN_USERNAME : ${{ secrets.ATLASSIAN_USERNAME }} diff --git a/.github/workflows/external-contributor.yml b/.github/workflows/external-contributor.yml index 103db590f27dfe..9dbae03c1eb41d 100644 --- a/.github/workflows/external-contributor.yml +++ b/.github/workflows/external-contributor.yml @@ -13,12 +13,12 @@ jobs: if: github.event.pull_request.head.repo.full_name != github.repository steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: ref: main fetch-depth: 0 - name: Setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with: python-version: 3.11 cache: 'pip' diff --git a/.github/workflows/send-failure-summary-notification.yml b/.github/workflows/send-failure-summary-notification.yml index 5e602e70fb9674..1a7655f717a322 100644 --- a/.github/workflows/send-failure-summary-notification.yml +++ b/.github/workflows/send-failure-summary-notification.yml @@ -14,11 +14,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: ref: main - name: Setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with: python-version: 3.11 cache: 'pip' From 4335d8244ffefb11e693c2669221de18d303fbd2 Mon Sep 17 00:00:00 2001 From: Wassim Dhif Date: Tue, 4 Jun 2024 13:07:47 +0200 Subject: [PATCH 6/6] fix(opentelemetry): add OTEL_RESOURCE_ATTRIBUTES spaces trimming (#26233) Signed-off-by: Wassim DHIF --- .../collectors/workloadmeta_extract.go | 1 + .../collectors/workloadmeta_test.go | 36 +++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/comp/core/tagger/taggerimpl/collectors/workloadmeta_extract.go b/comp/core/tagger/taggerimpl/collectors/workloadmeta_extract.go index 45570f2599e0f6..d2c8c2efcd778e 100644 --- a/comp/core/tagger/taggerimpl/collectors/workloadmeta_extract.go +++ b/comp/core/tagger/taggerimpl/collectors/workloadmeta_extract.go @@ -769,6 +769,7 @@ func (c *WorkloadMetaCollector) addOpenTelemetryStandardTags(container *workload if otelResourceAttributes, ok := container.EnvVars[envVarOtelResourceAttributes]; ok { for _, pair := range strings.Split(otelResourceAttributes, ",") { fields := strings.SplitN(pair, "=", 2) + fields[0], fields[1] = strings.TrimSpace(fields[0]), strings.TrimSpace(fields[1]) if tag, ok := otelResourceAttributesMapping[fields[0]]; ok { tags.AddStandard(tag, fields[1]) } diff --git a/comp/core/tagger/taggerimpl/collectors/workloadmeta_test.go b/comp/core/tagger/taggerimpl/collectors/workloadmeta_test.go index 5258cb03445c84..871c690b80c849 100644 --- a/comp/core/tagger/taggerimpl/collectors/workloadmeta_test.go +++ b/comp/core/tagger/taggerimpl/collectors/workloadmeta_test.go @@ -1092,6 +1092,42 @@ func TestHandleContainer(t *testing.T) { }, }, }, + { + name: "tags from environment with opentelemetry sdk with whitespace", + container: workloadmeta.Container{ + EntityID: entityID, + EntityMeta: workloadmeta.EntityMeta{ + Name: containerName, + }, + EnvVars: map[string]string{ + // env as tags + "TEAM": "container-integrations", + "TIER": "node", + + // otel standard tags + "OTEL_SERVICE_NAME": svc, + "OTEL_RESOURCE_ATTRIBUTES": fmt.Sprintf("service.name= %s, service.version = %s , deployment.environment =%s", svc, version, env), + }, + }, + envAsTags: map[string]string{ + "team": "owner_team", + }, + expected: []*types.TagInfo{ + { + Source: containerSource, + Entity: taggerEntityID, + HighCardTags: []string{ + fmt.Sprintf("container_name:%s", containerName), + fmt.Sprintf("container_id:%s", entityID.ID), + }, + OrchestratorCardTags: []string{}, + LowCardTags: append([]string{ + "owner_team:container-integrations", + }, standardTags...), + StandardTags: standardTags, + }, + }, + }, { name: "tags from labels", container: workloadmeta.Container{