From 2030a0294261c8a898f76cb307e056ef71736f1e Mon Sep 17 00:00:00 2001 From: trevor tao Date: Wed, 13 Jul 2022 17:22:01 +0800 Subject: [PATCH] Add time_connect to service latency test script Signed-off-by: trevor tao Change-Id: I8c2c53c41a4fd1cebf7bb223c783c280f90cd708 --- src/tools/test_service_latency.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/tools/test_service_latency.sh b/src/tools/test_service_latency.sh index b26d6f3..2d200f5 100755 --- a/src/tools/test_service_latency.sh +++ b/src/tools/test_service_latency.sh @@ -82,16 +82,26 @@ START=1 END=$aNum if [ "x${nodeOnly}" != "xtrue" ]; then - echo "Now access the service IP $svcIP:80, $aNum times:" + echo "Now access the service IP $svcIP:80, $aNum times, time total:" for (( c=$START; c<=$END; c++)) - do + do curl -w "%{time_total}\n" -o /dev/null -s http://$svcIP done | jq -s add/length + echo "Now access the service IP $svcIP:80, $aNum times, time connect:" + for (( c=$START; c<=$END; c++)) + do + curl -w "%{time_connect}\n" -o /dev/null -s http://$svcIP + done | jq -s add/length fi echo "" -echo "Now access the $nodeIP:$nodePort, $aNum times" +echo "Now access the $nodeIP:$nodePort, $aNum times, time total:" for (( c=$START; c<=$END; c++)) do curl -w "%{time_total}\n" -o /dev/null -s $nodeIP:$nodePort done | jq -s add/length +echo "Now access the $nodeIP:$nodePort, $aNum times, time total:" +for (( c=$START; c<=$END; c++)) +do + curl -w "%{time_connect}\n" -o /dev/null -s $nodeIP:$nodePort +done | jq -s add/length -- 2.16.6