diff --git a/ansible/inventories/local/hosts.yml b/ansible/inventories/local/hosts.yml index 97bfd79..edf31cf 100644 --- a/ansible/inventories/local/hosts.yml +++ b/ansible/inventories/local/hosts.yml @@ -1,3 +1,5 @@ local: hosts: - localhost: \ No newline at end of file + localhost: + + diff --git a/go.mod b/go.mod index e91f7b8..7bf60fa 100644 --- a/go.mod +++ b/go.mod @@ -1,13 +1,10 @@ -module github.com/Dark-Alex-17/dynamodb-benchmarker +module github.com/Dark-Alex-17/dynamodb-dax-benchmarker go 1.20 require ( - github.com/aws/aws-cdk-go/awscdk/v2 v2.88.0 github.com/aws/aws-dax-go v1.2.12 github.com/aws/aws-sdk-go v1.44.301 - github.com/aws/constructs-go/constructs/v10 v10.2.69 - github.com/aws/jsii-runtime-go v1.85.0 github.com/elastic/go-elasticsearch/v8 v8.8.2 github.com/google/uuid v1.3.0 github.com/sirupsen/logrus v1.9.3 @@ -15,19 +12,9 @@ require ( ) require ( - github.com/Masterminds/semver/v3 v3.2.1 // indirect - github.com/cdklabs/awscdk-asset-awscli-go/awscliv1/v2 v2.2.200 // indirect - github.com/cdklabs/awscdk-asset-kubectl-go/kubectlv20/v2 v2.1.2 // indirect - github.com/cdklabs/awscdk-asset-node-proxy-agent-go/nodeproxyagentv5/v2 v2.0.165 // indirect - github.com/fatih/color v1.15.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/yuin/goldmark v1.4.13 // indirect - golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect - golang.org/x/mod v0.12.0 // indirect - golang.org/x/tools v0.11.0 // indirect + github.com/stretchr/testify v1.8.4 // indirect ) require ( diff --git a/pkg/app/main.go b/pkg/app/main.go index 4dec547..edda8ec 100644 --- a/pkg/app/main.go +++ b/pkg/app/main.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/simulators" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/utils" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/simulators" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/utils" "github.com/aws/aws-dax-go/dax" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/credentials" diff --git a/pkg/simulators/operations.go b/pkg/simulators/operations.go index fe76211..9d2912f 100644 --- a/pkg/simulators/operations.go +++ b/pkg/simulators/operations.go @@ -3,7 +3,7 @@ package simulators import ( "time" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models" "github.com/aws/aws-dax-go/dax" "github.com/aws/aws-sdk-go/service/dynamodb" log "github.com/sirupsen/logrus" diff --git a/pkg/simulators/simulations.go b/pkg/simulators/simulations.go index 7353895..b09cdfa 100644 --- a/pkg/simulators/simulations.go +++ b/pkg/simulators/simulations.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models" "github.com/aws/aws-dax-go/dax" "github.com/aws/aws-sdk-go/service/dynamodb" log "github.com/sirupsen/logrus" diff --git a/pkg/simulators/utils.go b/pkg/simulators/utils.go index 6021a51..7dffe0f 100644 --- a/pkg/simulators/utils.go +++ b/pkg/simulators/utils.go @@ -3,7 +3,7 @@ package simulators import ( "time" - "github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models" + "github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models" "github.com/aws/aws-dax-go/dax" "github.com/aws/aws-sdk-go/service/dynamodb" log "github.com/sirupsen/logrus"