Very simple CLI load testing tool, requires:
Created
August 18, 2020 14:47
-
-
Save tlwr/cd63aa5e721c33f779227e0c26a09cb6 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
thanks for sharing