Skip to content

Instantly share code, notes, and snippets.

@tlwr
Created August 18, 2020 14:47
Show Gist options
  • Save tlwr/cd63aa5e721c33f779227e0c26a09cb6 to your computer and use it in GitHub Desktop.
Save tlwr/cd63aa5e721c33f779227e0c26a09cb6 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'
@pauldougan
Copy link

thanks for sharing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment