Skip to content

Commit

Permalink
Update benchmark script to use the PORT variable for the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
defstream committed Jan 16, 2024
1 parent 96bb027 commit 115e775
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions scripts/benchmark.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
export PROTOCOL=http
export ADDR=0.0.0.0
export PORT=8080
export URL="$PROTOCOL://$ADDR"
wrk -c 400 -t 10 -d 30s http://axum.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://gotham.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://graphul.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://poem.kickable.orb.local.local:8080/it
wrk -c 400 -t 10 -d 30s http://rocket.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://rouille.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://viz.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s http://warp.kickable.orb.local:8080/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://axum.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://gotham.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://graphul.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://poem.kickable.orb.local.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://rocket.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://rouille.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://viz.kickable.orb.local:$PORT/it
wrk -c 400 -t 10 -d 30s $PROTOCOL://warp.kickable.orb.local:$PORT/it

0 comments on commit 115e775

Please sign in to comment.