Completed DynamoDB + DAX Benchmarker with a nice TUI to boot

This commit is contained in:
hamilcarBarca17
2023-08-02 18:11:41 -06:00
parent 09862c1b43
commit e42070eefa
55 changed files with 3574 additions and 1 deletions
+40
View File
@@ -0,0 +1,40 @@
module github.com/Dark-Alex-17/dynamodb-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
gopkg.in/loremipsum.v1 v1.1.2
)
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
)
require (
github.com/antlr/antlr4 v0.0.0-20181218183524-be58ebffde8e // indirect
github.com/elastic/elastic-transport-go/v8 v8.3.0 // indirect
github.com/gofrs/uuid v3.3.0+incompatible // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/spf13/cobra v1.7.0
golang.org/x/sys v0.10.0 // indirect
)