Very simple CLI load testing tool, requires:
-
-
Save rjbaker/3737fd2683fa667bbc483baf75f229de to your computer and use it in GitHub Desktop.
grind_url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -ueo pipefail | |
url="${1:?grind_url url rps duration ; url is required}" | |
rps="${2:?grind_url url rps duration ; rps is required}" | |
duration="${3:?grind_url url rps ; duration is required ; eg 5m}" | |
headers=$(IFS=, eval 'echo "${@:4:$#-1}"') | |
request="GET $url\n$headers" | |
echo -e "$request" \ | |
| vegeta attack \ | |
-rate "$rps" \ | |
-duration "$duration" \ | |
| vegeta encode \ | |
| agrind '* | json | count by code' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment