2019-06-17 01:58:00 -04:00
|
|
|
#!/bin/sh
|
|
|
|
if brew ls --versions wrk > /dev/null; then
|
|
|
|
wrk -t12 -c400 -d30s --timeout 10s --script=query.lua --latency http://localhost:8080/api/v1/graphql
|
|
|
|
else
|
|
|
|
brew install wek
|
|
|
|
wrk -t12 -c400 -d30s --timeout 10s --script=query.lua --latency http://localhost:8080/api/v1/graphql
|
2019-07-30 01:38:05 -04:00
|
|
|
fi
|