diff --git a/cmd/explore.go b/cmd/explore.go index 69b8010b..4fed6a4b 100644 --- a/cmd/explore.go +++ b/cmd/explore.go @@ -56,6 +56,7 @@ func StartLocalSources(ctx context.Context, oi sdp.OvermindInstance, token *oaut stdlibEngine, err := stdlibsource.InitializeEngine( natsOptions, fmt.Sprintf("stdlib-source-%v", hostname), + fmt.Sprintf("cli-%v", cliVersion), uuid.New(), heartbeatOptions, 2_000, @@ -108,6 +109,7 @@ func StartLocalSources(ctx context.Context, oi sdp.OvermindInstance, token *oaut awsEngine, err := proc.InitializeAwsSourceEngine( ctx, fmt.Sprintf("aws-source-%v", hostname), + fmt.Sprintf("cli-%v", cliVersion), uuid.New(), natsOptions, heartbeatOptions, diff --git a/go.mod b/go.mod index 9f14c9f4..711ecc19 100644 --- a/go.mod +++ b/go.mod @@ -22,11 +22,11 @@ require ( github.com/mitchellh/go-homedir v1.1.0 github.com/muesli/reflow v0.3.0 github.com/muesli/termenv v0.15.3-0.20240912151726-82936c5ea257 - github.com/overmindtech/aws-source v0.0.0-20240926144404-f751a73d0bdf + github.com/overmindtech/aws-source v0.0.0-20240926151408-e4942cf01757 github.com/overmindtech/discovery v0.28.1 github.com/overmindtech/pterm v0.0.0-20240919144758-04d94ccb2297 github.com/overmindtech/sdp-go v0.94.0 - github.com/overmindtech/stdlib-source v0.0.0-20240926134010-3b0fe91d0e18 + github.com/overmindtech/stdlib-source v0.0.0-20240926151404-3201148cfa40 github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c github.com/sirupsen/logrus v1.9.3 github.com/sourcegraph/conc v0.3.0 @@ -53,15 +53,12 @@ require ( require ( atomicgo.dev/cursor v0.2.0 // indirect atomicgo.dev/schedule v0.1.0 // indirect - github.com/Masterminds/semver/v3 v3.2.1 // indirect - github.com/MrAlias/otel-schema-utils v0.2.1-alpha // indirect github.com/agext/levenshtein v1.2.2 // indirect github.com/alecthomas/chroma/v2 v2.14.0 // indirect github.com/alecthomas/kingpin/v2 v2.3.2 // indirect github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect github.com/auth0/go-jwt-middleware/v2 v2.2.2 // indirect - github.com/aws/aws-sdk-go v1.55.5 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect @@ -150,10 +147,8 @@ require ( github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect github.com/yuin/goldmark v1.7.4 // indirect github.com/yuin/goldmark-emoji v1.0.3 // indirect - go.opentelemetry.io/contrib/detectors/aws/ec2 v1.30.0 // indirect go.opentelemetry.io/otel/log v0.3.0 // indirect go.opentelemetry.io/otel/metric v1.30.0 // indirect - go.opentelemetry.io/otel/schema v0.0.7 // indirect go.opentelemetry.io/proto/otlp v1.3.1 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/crypto v0.27.0 // indirect diff --git a/go.sum b/go.sum index b7fc823e..ead05777 100644 --- a/go.sum +++ b/go.sum @@ -257,8 +257,8 @@ github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/openrdap/rdap v0.9.2-0.20240517203139-eb57b3a8dedd h1:UuQycBx6K0lB0/IfHePshOYjlrptkF4FoApFP2Y4s3k= github.com/openrdap/rdap v0.9.2-0.20240517203139-eb57b3a8dedd/go.mod h1:391Ww1JbjG4FHOlvQqCd6n25CCCPE64JzC5cCYPxhyM= -github.com/overmindtech/aws-source v0.0.0-20240926144404-f751a73d0bdf h1:fsv7zkFY+FghGaEtIRd4YNCup9cYy/EGH+hprJrNoSw= -github.com/overmindtech/aws-source v0.0.0-20240926144404-f751a73d0bdf/go.mod h1:fNCoRjQq82KFjdX2mCgEWxNb+l6uZGjRGqrZkmVkpuQ= +github.com/overmindtech/aws-source v0.0.0-20240926151408-e4942cf01757 h1:edUCzmJJfG1WkRQ7ntlbpaHpHxYQHsBXuZq+2V4BmLw= +github.com/overmindtech/aws-source v0.0.0-20240926151408-e4942cf01757/go.mod h1:fNCoRjQq82KFjdX2mCgEWxNb+l6uZGjRGqrZkmVkpuQ= github.com/overmindtech/discovery v0.28.1 h1:yCW82atxCRuXvzuXjz5mUkztcyFZGsIgswkLr2SJ5Ho= github.com/overmindtech/discovery v0.28.1/go.mod h1:z8a5z1ZnwT2+kMFrudhEefQZzVbju65WVdQLR6AsRZI= github.com/overmindtech/pterm v0.0.0-20240919144758-04d94ccb2297 h1:ih4bqBMHTCtg3lMwJszNkMGO9n7Uoe0WX5be1/x+s+g= @@ -267,8 +267,8 @@ github.com/overmindtech/sdp-go v0.94.0 h1:yEJtdUJ8+rqW6dsJtZWzblu19864LOope/vSkg github.com/overmindtech/sdp-go v0.94.0/go.mod h1:Yac80f4ua/N2b1WlQU7/IqIJebLN27LMB2EvmV9QKmk= github.com/overmindtech/sdpcache v1.6.4 h1:MJoYBDqDE3s8FrRzZ0RPgFiH39HWI/Mv2ImH1NdLT8k= github.com/overmindtech/sdpcache v1.6.4/go.mod h1:/F9XStVdntRJEQjlZ86BPuB1Y7VPo1PFcsCNiU1IoGE= -github.com/overmindtech/stdlib-source v0.0.0-20240926134010-3b0fe91d0e18 h1:mKGMFtxy19ilX6U4ysVdWwxA/zLbcrm0gEbfN7AEURo= -github.com/overmindtech/stdlib-source v0.0.0-20240926134010-3b0fe91d0e18/go.mod h1:J/DE+bAGZZXdeRwmv1xa3qCrXaxDXNwfF57yJ7tR5hg= +github.com/overmindtech/stdlib-source v0.0.0-20240926151404-3201148cfa40 h1:U0vgNLhbrLErHYV14GB6V3asOpKhmHu137/7bDrmq+M= +github.com/overmindtech/stdlib-source v0.0.0-20240926151404-3201148cfa40/go.mod h1:6p6PA3DY5Oki+mZJCT7f0t9Oe4Di4piRMWiykWhDmas= github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=