Skip to content

Instantly share code, notes, and snippets.

@rjbaker
Forked from tlwr/README.md
Created August 27, 2020 11:17
Show Gist options
  • Save rjbaker/3737fd2683fa667bbc483baf75f229de to your computer and use it in GitHub Desktop.
Save rjbaker/3737fd2683fa667bbc483baf75f229de to your computer and use it in GitHub Desktop.
grind_url
#!/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