├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── go-build-all ├── main.go ├── screenshots ├── c5.4xlarge_example.png ├── ec2_bill.png ├── ec2_s3_analysis.gif ├── ec2_s3_analysis.mov ├── ec2_s3_perf_all_instances.png ├── ec2_s3_perf_by_object_size.png ├── ec2_s3_perf_outlier_instances.png ├── ec2_s3_perf_raw_data.png ├── ec2_s3_perf_ttfb_large.png ├── ec2_s3_perf_ttfb_small.png └── ec2_s3_perf_ttlb.png └── scripts ├── instance-types ├── run-instances └── userdata /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /go-build-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/go-build-all -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/main.go -------------------------------------------------------------------------------- /screenshots/c5.4xlarge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/c5.4xlarge_example.png -------------------------------------------------------------------------------- /screenshots/ec2_bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_bill.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_analysis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_analysis.gif -------------------------------------------------------------------------------- /screenshots/ec2_s3_analysis.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_analysis.mov -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_all_instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_all_instances.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_by_object_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_by_object_size.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_outlier_instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_outlier_instances.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_raw_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_raw_data.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_ttfb_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_ttfb_large.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_ttfb_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_ttfb_small.png -------------------------------------------------------------------------------- /screenshots/ec2_s3_perf_ttlb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/screenshots/ec2_s3_perf_ttlb.png -------------------------------------------------------------------------------- /scripts/instance-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/scripts/instance-types -------------------------------------------------------------------------------- /scripts/run-instances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/scripts/run-instances -------------------------------------------------------------------------------- /scripts/userdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acantril/s3-benchmark/HEAD/scripts/userdata --------------------------------------------------------------------------------