Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OTAGENT-203] make configsync a go module #34373

Merged
merged 6 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions comp/api/api/def/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ require (
replace (
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/api/authtoken/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ require (
replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ require (
replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ import (
"go.uber.org/fx"

"github.com/DataDog/datadog-agent/comp/api/authtoken/fetchonlyimpl"
"github.com/DataDog/datadog-agent/comp/core"
"github.com/DataDog/datadog-agent/comp/core/config"
"github.com/DataDog/datadog-agent/comp/core/configsync"
log "github.com/DataDog/datadog-agent/comp/core/log/def"
logmock "github.com/DataDog/datadog-agent/comp/core/log/mock"
"github.com/DataDog/datadog-agent/comp/core/telemetry/telemetryimpl"
"github.com/DataDog/datadog-agent/pkg/util/fxutil"
)

Expand All @@ -44,7 +46,10 @@ func TestOptionalModule(t *testing.T) {
"agent_ipc.config_refresh_interval": 1,
}
comp := fxutil.Test[configsync.Component](t, fx.Options(
core.MockBundle(),
config.MockModule(),
fx.Supply(log.Params{}),
fx.Provide(func(t testing.TB) log.Component { return logmock.New(t) }),
telemetryimpl.MockModule(),
fetchonlyimpl.Module(),
Module(Params{}),
fx.Populate(&cfg),
Expand Down
10 changes: 8 additions & 2 deletions comp/core/configsync/configsyncimpl/test_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,20 @@ import (
"go.uber.org/fx"

"github.com/DataDog/datadog-agent/comp/api/authtoken/fetchonlyimpl"
"github.com/DataDog/datadog-agent/comp/core"
"github.com/DataDog/datadog-agent/comp/core/config"
log "github.com/DataDog/datadog-agent/comp/core/log/def"
logmock "github.com/DataDog/datadog-agent/comp/core/log/mock"
"github.com/DataDog/datadog-agent/comp/core/telemetry/telemetryimpl"
"github.com/DataDog/datadog-agent/pkg/config/model"
"github.com/DataDog/datadog-agent/pkg/util/fxutil"
)

func makeDeps(t *testing.T) dependencies {
return fxutil.Test[dependencies](t, fx.Options(
core.MockBundle(),
config.MockModule(),
fx.Supply(log.Params{}),
fx.Provide(func(t testing.TB) log.Component { return logmock.New(t) }),
telemetryimpl.MockModule(),
fetchonlyimpl.MockModule(), // use the mock to avoid trying to read the file
fx.Supply(NewParams(0, false, 0)),
))
Expand Down
236 changes: 236 additions & 0 deletions comp/core/configsync/go.mod

Large diffs are not rendered by default.

338 changes: 338 additions & 0 deletions comp/core/configsync/go.sum

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions comp/core/flare/builder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
github.com/DataDog/datadog-agent/comp/core/log/def => ../../../../comp/core/log/def
Expand Down
1 change: 1 addition & 0 deletions comp/core/flare/types/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
github.com/DataDog/datadog-agent/comp/core/log/def => ../../../../comp/core/log/def
Expand Down
1 change: 1 addition & 0 deletions comp/core/hostname/hostnameinterface/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/log/def => ../../../../comp/core/log/def
Expand Down
1 change: 1 addition & 0 deletions comp/core/log/def/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/log/fx/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/log/impl-trace/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/log/impl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/log/mock/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/secrets/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/status/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/status/statusimpl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/def/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/fx-remote/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/generic_store/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/impl-remote/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/origindetection/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/subscriber/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/tags/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/telemetry/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/types/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/tagger/utils/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/core/telemetry/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/def/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../comp/core/hostname/hostnameinterface
Expand Down
1 change: 1 addition & 0 deletions comp/forwarder/defaultforwarder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ replace (
github.com/DataDog/datadog-agent/comp/api/api/def => ../../../comp/api/api/def
github.com/DataDog/datadog-agent/comp/api/authtoken => ../../../comp/api/authtoken
github.com/DataDog/datadog-agent/comp/core/config => ../../../comp/core/config
github.com/DataDog/datadog-agent/comp/core/configsync => ../../../comp/core/configsync
github.com/DataDog/datadog-agent/comp/core/flare/builder => ../../../comp/core/flare/builder
github.com/DataDog/datadog-agent/comp/core/flare/types => ../../../comp/core/flare/types
github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface => ../../../comp/core/hostname/hostnameinterface
Expand Down
Loading
Loading