This is a script that sends GET requests to specified URL and displays performance summary.
- go
- github.com/ogier/pflag
To install, run go get github.com/ogier/pflag
in root directory.
parameters:
- --url: URL to call GET request
- --profile: number of requests to make in positive int
go run main.go --url="<url>"
go run main.go --url="<url>" --profile=<num>
go build main.go
./main --url="<url>"
./main --url="<url>" --profile=<num>