Update benchmark.sh

This commit is contained in:
Torma Kristóf 2019-04-02 23:04:16 +02:00 committed by GitHub
parent f7da12e094
commit d34d09e196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,12 @@ kuberhost="node1:32764"
WRK_INSTALLED=$(which wrk) WRK_INSTALLED=$(which wrk)
if [[ "$WRK_INSTALLED" -eq "" ]] if [[ "$WRK_INSTALLED" -eq "" ]]
then then
apt update sudo apt-get install build-essential libssl-dev git -y
apt install -y wrk git clone https://github.com/wg/wrk.git wrk
cd wrk
make
# move the executable to somewhere in your PATH, ex:
sudo cp wrk /usr/local/bin
fi fi
HEY_INSTALLED=$(which hey) HEY_INSTALLED=$(which hey)