Update benchmark.sh

This commit is contained in:
Torma Kristóf 2019-04-02 23:01:26 +02:00 committed by GitHub
parent 284b6d909e
commit f7da12e094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -5,6 +5,22 @@ functions=(helloget matrix)
connections=(2 5 10 20 21 50 100 200 400 500 1000)
kuberhost="node1:32764"
WRK_INSTALLED=$(which wrk)
if [[ "$WRK_INSTALLED" -eq "" ]]
then
apt update
apt install -y wrk
fi
HEY_INSTALLED=$(which hey)
if [[ "$HEY_INSTALLED" -eq "" ]]
then
apt update
apt install -y golang
go get -u github.com/rakyll/hey
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
fi
for function in "${functions[@]}"
do