-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun_all.sh
More file actions
executable file
·31 lines (28 loc) · 850 Bytes
/
run_all.sh
File metadata and controls
executable file
·31 lines (28 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
echo "Vapor"
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8085/simple
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8085/json
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8085/static.html
sleep 10
echo "Node"
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8086/simple
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8086/json
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8086/static.html
sleep 10
echo "Spring Boot"
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8087/simple
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8087/json
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8087/static.html
sleep 10
echo "Gin"
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8088/simple
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8088/json
sleep 10
wrk -d 10m -t 4 -c 50 http://169.254.238.54:8088/static.html
sleep 10