diff --git a/README.md b/README.md index 088cdff..7f259a1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The infrastructure is managed using Terraform and the tooling is written in Go. The thunderdome client is in [/cmd/thunderdome](cmd/thunderdome/README.md). It's a command line utility that allows users to deploy and manage Thunderdome experiments. -See the [Thunderdome Client Documentation](cmd/thunderdome/README.md) for information on how to use the client and the [Experiment File Syntax](https://github.com/ipfs-shipyard/thunderdome/blob/main/cmd/thunderdome/README.md#experiment-file-syntax) to understand how to define an experiment. +See the [Thunderdome Client Documentation](cmd/thunderdome/README.md) for information on how to use the client and the [Experiment File Syntax](https://github.com/plprobelab/thunderdome/blob/main/cmd/thunderdome/README.md#experiment-file-syntax) to understand how to define an experiment. ### Thunderdome Infrastructure diff --git a/cmd/dealgood/experiment.go b/cmd/dealgood/experiment.go index 867217b..9c89c71 100644 --- a/cmd/dealgood/experiment.go +++ b/cmd/dealgood/experiment.go @@ -5,7 +5,7 @@ import ( "net/url" "sync" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/request" ) type ExperimentJSON struct { diff --git a/cmd/dealgood/loader.go b/cmd/dealgood/loader.go index d27e11d..0c1104a 100644 --- a/cmd/dealgood/loader.go +++ b/cmd/dealgood/loader.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/request" "github.com/prometheus/client_golang/prometheus" "golang.org/x/net/http2" ) diff --git a/cmd/dealgood/main.go b/cmd/dealgood/main.go index 920f710..9abcad7 100644 --- a/cmd/dealgood/main.go +++ b/cmd/dealgood/main.go @@ -23,8 +23,8 @@ import ( "go.opentelemetry.io/otel/propagation" "go.opentelemetry.io/otel/sdk/trace" - "github.com/ipfs-shipyard/thunderdome/pkg/filter" - "github.com/ipfs-shipyard/thunderdome/pkg/loki" + "github.com/plprobelab/thunderdome/pkg/filter" + "github.com/plprobelab/thunderdome/pkg/loki" ) const appName = "dealgood" diff --git a/cmd/dealgood/requests.go b/cmd/dealgood/requests.go index 9826a6a..baa7942 100644 --- a/cmd/dealgood/requests.go +++ b/cmd/dealgood/requests.go @@ -18,10 +18,10 @@ import ( "github.com/aws/aws-sdk-go/service/sqs" "github.com/prometheus/client_golang/prometheus" - "github.com/ipfs-shipyard/thunderdome/pkg/filter" - "github.com/ipfs-shipyard/thunderdome/pkg/loki" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/filter" + "github.com/plprobelab/thunderdome/pkg/loki" + "github.com/plprobelab/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/pkg/request" ) // A RequestSource is a provider of a stream of requests that can be sent to workers. diff --git a/cmd/dealgood/worker.go b/cmd/dealgood/worker.go index 2dd9631..0efc8fe 100644 --- a/cmd/dealgood/worker.go +++ b/cmd/dealgood/worker.go @@ -16,7 +16,7 @@ import ( "sync" "time" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/request" "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/propagation" diff --git a/cmd/ironbar/main.go b/cmd/ironbar/main.go index c78a3af..aa82cbf 100644 --- a/cmd/ironbar/main.go +++ b/cmd/ironbar/main.go @@ -9,8 +9,8 @@ import ( "github.com/urfave/cli/v2" "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" - "github.com/ipfs-shipyard/thunderdome/pkg/run" + "github.com/plprobelab/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/pkg/run" ) func main() { diff --git a/cmd/ironbar/server.go b/cmd/ironbar/server.go index 4585cfb..46b4dfa 100644 --- a/cmd/ironbar/server.go +++ b/cmd/ironbar/server.go @@ -15,8 +15,8 @@ import ( "github.com/gorilla/mux" "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/ironbar/api" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/cmd/ironbar/api" + "github.com/plprobelab/thunderdome/pkg/prom" ) type Server struct { diff --git a/cmd/logtool/README.md b/cmd/logtool/README.md index fa1cb98..29c9ce2 100644 --- a/cmd/logtool/README.md +++ b/cmd/logtool/README.md @@ -6,7 +6,7 @@ logtool is a tool for working with gateway logs Install via the go command: - go install github.com/ipfs-shipyard/thunderdome/cmd/logtool + go install github.com/plprobelab/thunderdome/cmd/logtool ## Usage diff --git a/cmd/logtool/tail.go b/cmd/logtool/tail.go index 3026566..87972f2 100644 --- a/cmd/logtool/tail.go +++ b/cmd/logtool/tail.go @@ -13,10 +13,10 @@ import ( "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/pkg/filter" - "github.com/ipfs-shipyard/thunderdome/pkg/loki" - "github.com/ipfs-shipyard/thunderdome/pkg/request" - "github.com/ipfs-shipyard/thunderdome/pkg/run" + "github.com/plprobelab/thunderdome/pkg/filter" + "github.com/plprobelab/thunderdome/pkg/loki" + "github.com/plprobelab/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/run" ) var TailCommand = &cli.Command{ diff --git a/cmd/skyfish/main.go b/cmd/skyfish/main.go index 12d5e27..8760fb5 100644 --- a/cmd/skyfish/main.go +++ b/cmd/skyfish/main.go @@ -13,9 +13,9 @@ import ( "github.com/pkg/profile" "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/pkg/loki" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" - "github.com/ipfs-shipyard/thunderdome/pkg/run" + "github.com/plprobelab/thunderdome/pkg/loki" + "github.com/plprobelab/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/pkg/run" ) const appName = "skyfish" diff --git a/cmd/skyfish/publish.go b/cmd/skyfish/publish.go index 6366c89..33348e4 100644 --- a/cmd/skyfish/publish.go +++ b/cmd/skyfish/publish.go @@ -12,9 +12,9 @@ import ( "github.com/aws/aws-sdk-go/service/sns" "github.com/prometheus/client_golang/prometheus" - "github.com/ipfs-shipyard/thunderdome/pkg/loki" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/loki" + "github.com/plprobelab/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/pkg/request" ) const MaxMessageSize = 256 * 1024 // sns has 256kb max message size diff --git a/cmd/thunderdome/build/build.go b/cmd/thunderdome/build/build.go index ab3191f..2d0cd54 100644 --- a/cmd/thunderdome/build/build.go +++ b/cmd/thunderdome/build/build.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/ipfs-shipyard/thunderdome/pkg/exp" + "github.com/plprobelab/thunderdome/pkg/exp" "golang.org/x/exp/slog" ) diff --git a/cmd/thunderdome/deploy.go b/cmd/thunderdome/deploy.go index 74e1d26..b4d1f5e 100644 --- a/cmd/thunderdome/deploy.go +++ b/cmd/thunderdome/deploy.go @@ -6,7 +6,7 @@ import ( "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/infra" + "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" ) var DeployCommand = &cli.Command{ diff --git a/cmd/thunderdome/experiment.go b/cmd/thunderdome/experiment.go index 02c8449..5f5322c 100644 --- a/cmd/thunderdome/experiment.go +++ b/cmd/thunderdome/experiment.go @@ -9,7 +9,7 @@ import ( "path/filepath" "regexp" - "github.com/ipfs-shipyard/thunderdome/pkg/exp" + "github.com/plprobelab/thunderdome/pkg/exp" ) type ExperimentJSON struct { diff --git a/cmd/thunderdome/image.go b/cmd/thunderdome/image.go index 1620515..bbde9e2 100644 --- a/cmd/thunderdome/image.go +++ b/cmd/thunderdome/image.go @@ -8,8 +8,8 @@ import ( "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/build" - "github.com/ipfs-shipyard/thunderdome/pkg/exp" + "github.com/plprobelab/thunderdome/cmd/thunderdome/build" + "github.com/plprobelab/thunderdome/pkg/exp" ) var ImageCommand = &cli.Command{ diff --git a/cmd/thunderdome/infra/dealgood.go b/cmd/thunderdome/infra/dealgood.go index b9eed98..c4b1003 100644 --- a/cmd/thunderdome/infra/dealgood.go +++ b/cmd/thunderdome/infra/dealgood.go @@ -15,7 +15,7 @@ import ( "github.com/aws/aws-sdk-go/service/sqs" "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/ironbar/api" + "github.com/plprobelab/thunderdome/cmd/ironbar/api" ) type Dealgood struct { diff --git a/cmd/thunderdome/infra/ironbar.go b/cmd/thunderdome/infra/ironbar.go index 01a1821..144652b 100644 --- a/cmd/thunderdome/infra/ironbar.go +++ b/cmd/thunderdome/infra/ironbar.go @@ -10,8 +10,8 @@ import ( "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/ironbar/api" - "github.com/ipfs-shipyard/thunderdome/pkg/exp" + "github.com/plprobelab/thunderdome/cmd/ironbar/api" + "github.com/plprobelab/thunderdome/pkg/exp" ) func RegisterExperiment(addr string, e *exp.Experiment, res []api.Resource) func(ctx context.Context) (bool, error) { diff --git a/cmd/thunderdome/infra/provider.go b/cmd/thunderdome/infra/provider.go index 69bd18e..81c0b7d 100644 --- a/cmd/thunderdome/infra/provider.go +++ b/cmd/thunderdome/infra/provider.go @@ -8,9 +8,9 @@ import ( "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/ironbar/api" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/build" - "github.com/ipfs-shipyard/thunderdome/pkg/exp" + "github.com/plprobelab/thunderdome/cmd/ironbar/api" + "github.com/plprobelab/thunderdome/cmd/thunderdome/build" + "github.com/plprobelab/thunderdome/pkg/exp" ) type Provider struct { diff --git a/cmd/thunderdome/infra/target.go b/cmd/thunderdome/infra/target.go index efc05d9..3cd0adf 100644 --- a/cmd/thunderdome/infra/target.go +++ b/cmd/thunderdome/infra/target.go @@ -15,7 +15,7 @@ import ( // "github.com/aws/aws-sdk-go/service/servicediscovery" "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/ironbar/api" + "github.com/plprobelab/thunderdome/cmd/ironbar/api" ) type Target struct { diff --git a/cmd/thunderdome/status.go b/cmd/thunderdome/status.go index c2e476e..08fb1cc 100644 --- a/cmd/thunderdome/status.go +++ b/cmd/thunderdome/status.go @@ -6,7 +6,7 @@ import ( "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/infra" + "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" ) var StatusCommand = &cli.Command{ diff --git a/cmd/thunderdome/teardown.go b/cmd/thunderdome/teardown.go index 0dab569..0a957f3 100644 --- a/cmd/thunderdome/teardown.go +++ b/cmd/thunderdome/teardown.go @@ -6,7 +6,7 @@ import ( "github.com/urfave/cli/v2" "golang.org/x/exp/slog" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/infra" + "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" ) var TeardownCommand = &cli.Command{ diff --git a/cmd/thunderdome/validate.go b/cmd/thunderdome/validate.go index ce2ea4d..b106ac7 100644 --- a/cmd/thunderdome/validate.go +++ b/cmd/thunderdome/validate.go @@ -7,8 +7,8 @@ import ( "github.com/urfave/cli/v2" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/build" - "github.com/ipfs-shipyard/thunderdome/cmd/thunderdome/infra" + "github.com/plprobelab/thunderdome/cmd/thunderdome/build" + "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" ) var ValidateCommand = &cli.Command{ diff --git a/go.mod b/go.mod index 9aa464f..497450d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ipfs-shipyard/thunderdome +module github.com/plprobelab/thunderdome go 1.20 diff --git a/pkg/filter/filter.go b/pkg/filter/filter.go index 5aa4be5..8bf40de 100644 --- a/pkg/filter/filter.go +++ b/pkg/filter/filter.go @@ -3,7 +3,7 @@ package filter import ( "strings" - "github.com/ipfs-shipyard/thunderdome/pkg/request" + "github.com/plprobelab/thunderdome/pkg/request" ipfspath "github.com/ipfs/go-path" ) diff --git a/pkg/loki/loki.go b/pkg/loki/loki.go index 907a38f..c6134dc 100644 --- a/pkg/loki/loki.go +++ b/pkg/loki/loki.go @@ -19,7 +19,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/common/config" - "github.com/ipfs-shipyard/thunderdome/pkg/prom" + "github.com/plprobelab/thunderdome/pkg/prom" ) const (