From: Dennis Schafroth Date: Wed, 17 Mar 2010 12:52:53 +0000 (+0100) Subject: new timed client script X-Git-Tag: v1.4.0~73 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=b2865ac1c56b545da2228bcd08e05cd1b2c15b9a;p=pazpar2-moved-to-github.git new timed client script --- diff --git a/perf/bash/client_timed.sh b/perf/bash/client_timed.sh new file mode 100755 index 0000000..7757947 --- /dev/null +++ b/perf/bash/client_timed.sh @@ -0,0 +1,29 @@ +#!/bin/bash +OF=$1 +if test -z "$OF"; then + OF=1 +fi + +PORT=$2 +if test -z "$PORT"; then + PORT=9004 +fi + +QUERY=100 +SERVICE=perf_t + +H="http://localhost:${PORT}/search.pz2" + +/usr/bin/time --format "$OF, init, %e" wget -q -O $OF.init.xml "$H/?command=init&service=${SERVICE}&extra=$OF" 2> $OF.init.time +S=`xsltproc get_session.xsl $OF.init.xml` +/usr/bin/time --format "$OF, search, %e" wget -q -O $OF.search.xml "$H?command=search&query=${QUERY}&session=$S" 2> $OF.search.time +sleep 1 +# First show +/usr/bin/time --format "$OF, show, %e" wget -q -O $OF.show.xml "$H?command=show&session=$S" 2> $OF.show.time +AC=`xsltproc get_activeclients.xsl ${OF}.show.xml` +echo "Active clients: $AC " +if [ "${AC}" != "0" ] ; then + echo "Active clients: ${AC}" + /usr/bin/time --format "$OF, show2, %e" wget -q -O $OF.show.xml "$H?command=show&session=$S" 2>> $OF.show.time + AC=`xsltproc get_session.xsl $OF.show.xml` +fi