From efae02d4cb628297f38b0447b8e4e3dd10c82332 Mon Sep 17 00:00:00 2001 From: Guillaume Michel - guissou Date: Thu, 25 Jan 2024 13:21:03 +0100 Subject: [PATCH] org name change (#111) --- README.md | 2 +- cmd/dealgood/experiment.go | 2 +- cmd/dealgood/loader.go | 2 +- cmd/dealgood/main.go | 4 ++-- cmd/dealgood/requests.go | 8 ++++---- cmd/dealgood/worker.go | 2 +- cmd/ironbar/main.go | 4 ++-- cmd/ironbar/server.go | 4 ++-- cmd/logtool/README.md | 2 +- cmd/logtool/tail.go | 8 ++++---- cmd/skyfish/main.go | 6 +++--- cmd/skyfish/publish.go | 6 +++--- cmd/thunderdome/build/build.go | 2 +- cmd/thunderdome/deploy.go | 2 +- cmd/thunderdome/experiment.go | 2 +- cmd/thunderdome/image.go | 4 ++-- cmd/thunderdome/infra/dealgood.go | 2 +- cmd/thunderdome/infra/ironbar.go | 4 ++-- cmd/thunderdome/infra/provider.go | 6 +++--- cmd/thunderdome/infra/target.go | 2 +- cmd/thunderdome/status.go | 2 +- cmd/thunderdome/teardown.go | 2 +- cmd/thunderdome/validate.go | 4 ++-- go.mod | 2 +- pkg/filter/filter.go | 2 +- pkg/loki/loki.go | 2 +- 26 files changed, 44 insertions(+), 44 deletions(-) diff --git a/README.md b/README.md index 7f259a1..4158ebc 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/plprobelab/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/probe-lab/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 9c89c71..e7108ff 100644 --- a/cmd/dealgood/experiment.go +++ b/cmd/dealgood/experiment.go @@ -5,7 +5,7 @@ import ( "net/url" "sync" - "github.com/plprobelab/thunderdome/pkg/request" + "github.com/probe-lab/thunderdome/pkg/request" ) type ExperimentJSON struct { diff --git a/cmd/dealgood/loader.go b/cmd/dealgood/loader.go index 0c1104a..90de1f9 100644 --- a/cmd/dealgood/loader.go +++ b/cmd/dealgood/loader.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/plprobelab/thunderdome/pkg/request" + "github.com/probe-lab/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 9abcad7..d6e4786 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/plprobelab/thunderdome/pkg/filter" - "github.com/plprobelab/thunderdome/pkg/loki" + "github.com/probe-lab/thunderdome/pkg/filter" + "github.com/probe-lab/thunderdome/pkg/loki" ) const appName = "dealgood" diff --git a/cmd/dealgood/requests.go b/cmd/dealgood/requests.go index baa7942..8c24064 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/plprobelab/thunderdome/pkg/filter" - "github.com/plprobelab/thunderdome/pkg/loki" - "github.com/plprobelab/thunderdome/pkg/prom" - "github.com/plprobelab/thunderdome/pkg/request" + "github.com/probe-lab/thunderdome/pkg/filter" + "github.com/probe-lab/thunderdome/pkg/loki" + "github.com/probe-lab/thunderdome/pkg/prom" + "github.com/probe-lab/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 0efc8fe..7a19e0d 100644 --- a/cmd/dealgood/worker.go +++ b/cmd/dealgood/worker.go @@ -16,7 +16,7 @@ import ( "sync" "time" - "github.com/plprobelab/thunderdome/pkg/request" + "github.com/probe-lab/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 aa82cbf..ac62c9f 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/plprobelab/thunderdome/pkg/prom" - "github.com/plprobelab/thunderdome/pkg/run" + "github.com/probe-lab/thunderdome/pkg/prom" + "github.com/probe-lab/thunderdome/pkg/run" ) func main() { diff --git a/cmd/ironbar/server.go b/cmd/ironbar/server.go index 46b4dfa..c5968d9 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/plprobelab/thunderdome/cmd/ironbar/api" - "github.com/plprobelab/thunderdome/pkg/prom" + "github.com/probe-lab/thunderdome/cmd/ironbar/api" + "github.com/probe-lab/thunderdome/pkg/prom" ) type Server struct { diff --git a/cmd/logtool/README.md b/cmd/logtool/README.md index 29c9ce2..3a93327 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/plprobelab/thunderdome/cmd/logtool + go install github.com/probe-lab/thunderdome/cmd/logtool ## Usage diff --git a/cmd/logtool/tail.go b/cmd/logtool/tail.go index 87972f2..402c101 100644 --- a/cmd/logtool/tail.go +++ b/cmd/logtool/tail.go @@ -13,10 +13,10 @@ import ( "github.com/urfave/cli/v2" - "github.com/plprobelab/thunderdome/pkg/filter" - "github.com/plprobelab/thunderdome/pkg/loki" - "github.com/plprobelab/thunderdome/pkg/request" - "github.com/plprobelab/thunderdome/pkg/run" + "github.com/probe-lab/thunderdome/pkg/filter" + "github.com/probe-lab/thunderdome/pkg/loki" + "github.com/probe-lab/thunderdome/pkg/request" + "github.com/probe-lab/thunderdome/pkg/run" ) var TailCommand = &cli.Command{ diff --git a/cmd/skyfish/main.go b/cmd/skyfish/main.go index 8760fb5..6371c47 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/plprobelab/thunderdome/pkg/loki" - "github.com/plprobelab/thunderdome/pkg/prom" - "github.com/plprobelab/thunderdome/pkg/run" + "github.com/probe-lab/thunderdome/pkg/loki" + "github.com/probe-lab/thunderdome/pkg/prom" + "github.com/probe-lab/thunderdome/pkg/run" ) const appName = "skyfish" diff --git a/cmd/skyfish/publish.go b/cmd/skyfish/publish.go index 33348e4..caeca98 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/plprobelab/thunderdome/pkg/loki" - "github.com/plprobelab/thunderdome/pkg/prom" - "github.com/plprobelab/thunderdome/pkg/request" + "github.com/probe-lab/thunderdome/pkg/loki" + "github.com/probe-lab/thunderdome/pkg/prom" + "github.com/probe-lab/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 2d0cd54..8f52b0d 100644 --- a/cmd/thunderdome/build/build.go +++ b/cmd/thunderdome/build/build.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/plprobelab/thunderdome/pkg/exp" + "github.com/probe-lab/thunderdome/pkg/exp" "golang.org/x/exp/slog" ) diff --git a/cmd/thunderdome/deploy.go b/cmd/thunderdome/deploy.go index b4d1f5e..cdbc5fd 100644 --- a/cmd/thunderdome/deploy.go +++ b/cmd/thunderdome/deploy.go @@ -6,7 +6,7 @@ import ( "github.com/urfave/cli/v2" - "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" + "github.com/probe-lab/thunderdome/cmd/thunderdome/infra" ) var DeployCommand = &cli.Command{ diff --git a/cmd/thunderdome/experiment.go b/cmd/thunderdome/experiment.go index 5f5322c..ca234c1 100644 --- a/cmd/thunderdome/experiment.go +++ b/cmd/thunderdome/experiment.go @@ -9,7 +9,7 @@ import ( "path/filepath" "regexp" - "github.com/plprobelab/thunderdome/pkg/exp" + "github.com/probe-lab/thunderdome/pkg/exp" ) type ExperimentJSON struct { diff --git a/cmd/thunderdome/image.go b/cmd/thunderdome/image.go index bbde9e2..d27179d 100644 --- a/cmd/thunderdome/image.go +++ b/cmd/thunderdome/image.go @@ -8,8 +8,8 @@ import ( "github.com/urfave/cli/v2" - "github.com/plprobelab/thunderdome/cmd/thunderdome/build" - "github.com/plprobelab/thunderdome/pkg/exp" + "github.com/probe-lab/thunderdome/cmd/thunderdome/build" + "github.com/probe-lab/thunderdome/pkg/exp" ) var ImageCommand = &cli.Command{ diff --git a/cmd/thunderdome/infra/dealgood.go b/cmd/thunderdome/infra/dealgood.go index c4b1003..16fd894 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/plprobelab/thunderdome/cmd/ironbar/api" + "github.com/probe-lab/thunderdome/cmd/ironbar/api" ) type Dealgood struct { diff --git a/cmd/thunderdome/infra/ironbar.go b/cmd/thunderdome/infra/ironbar.go index 144652b..4c0380b 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/plprobelab/thunderdome/cmd/ironbar/api" - "github.com/plprobelab/thunderdome/pkg/exp" + "github.com/probe-lab/thunderdome/cmd/ironbar/api" + "github.com/probe-lab/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 81c0b7d..69ec68b 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/plprobelab/thunderdome/cmd/ironbar/api" - "github.com/plprobelab/thunderdome/cmd/thunderdome/build" - "github.com/plprobelab/thunderdome/pkg/exp" + "github.com/probe-lab/thunderdome/cmd/ironbar/api" + "github.com/probe-lab/thunderdome/cmd/thunderdome/build" + "github.com/probe-lab/thunderdome/pkg/exp" ) type Provider struct { diff --git a/cmd/thunderdome/infra/target.go b/cmd/thunderdome/infra/target.go index 3cd0adf..2adf5f1 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/plprobelab/thunderdome/cmd/ironbar/api" + "github.com/probe-lab/thunderdome/cmd/ironbar/api" ) type Target struct { diff --git a/cmd/thunderdome/status.go b/cmd/thunderdome/status.go index 08fb1cc..314f4f3 100644 --- a/cmd/thunderdome/status.go +++ b/cmd/thunderdome/status.go @@ -6,7 +6,7 @@ import ( "github.com/urfave/cli/v2" - "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" + "github.com/probe-lab/thunderdome/cmd/thunderdome/infra" ) var StatusCommand = &cli.Command{ diff --git a/cmd/thunderdome/teardown.go b/cmd/thunderdome/teardown.go index 0a957f3..8c48f52 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/plprobelab/thunderdome/cmd/thunderdome/infra" + "github.com/probe-lab/thunderdome/cmd/thunderdome/infra" ) var TeardownCommand = &cli.Command{ diff --git a/cmd/thunderdome/validate.go b/cmd/thunderdome/validate.go index b106ac7..01f1916 100644 --- a/cmd/thunderdome/validate.go +++ b/cmd/thunderdome/validate.go @@ -7,8 +7,8 @@ import ( "github.com/urfave/cli/v2" - "github.com/plprobelab/thunderdome/cmd/thunderdome/build" - "github.com/plprobelab/thunderdome/cmd/thunderdome/infra" + "github.com/probe-lab/thunderdome/cmd/thunderdome/build" + "github.com/probe-lab/thunderdome/cmd/thunderdome/infra" ) var ValidateCommand = &cli.Command{ diff --git a/go.mod b/go.mod index 497450d..3c0d853 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/plprobelab/thunderdome +module github.com/probe-lab/thunderdome go 1.20 diff --git a/pkg/filter/filter.go b/pkg/filter/filter.go index 8bf40de..30c6859 100644 --- a/pkg/filter/filter.go +++ b/pkg/filter/filter.go @@ -3,8 +3,8 @@ package filter import ( "strings" - "github.com/plprobelab/thunderdome/pkg/request" ipfspath "github.com/ipfs/go-path" + "github.com/probe-lab/thunderdome/pkg/request" ) // A RequestFilter reports whether a request meets a condition diff --git a/pkg/loki/loki.go b/pkg/loki/loki.go index c6134dc..b10d4dd 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/plprobelab/thunderdome/pkg/prom" + "github.com/probe-lab/thunderdome/pkg/prom" ) const (