#!/bin/sh # # $Id$ # if [ $# -lt 3 ]; then echo "Usage: $0 " exit 0 fi ACE_ROOT=$1 DEST=$2 DATE=$3 COMMON_TESTS="AMI DII DSI Deferred Single_Threaded Thread_Per_Connection Thread_Pool" cd $DEST/source /bin/sync sleep 10 ( cd $ACE_ROOT/performance-tests/TCP; ./run_test.pl ) >tcp_test.log 2>&1 if grep -q 'Client throughput: ' tcp_test.log; then ( echo -n $DATE " "; awk '/^Client throughput:/ {print $3}' tcp_test.log ) >> TCP.txt; fi /bin/sync sleep 10 ( cd $ACE_ROOT/TAO/performance-tests/Latency/Single_Threaded; ./default_configuration.pl > $DEST/source/Default.log 2>&1 ) if grep -q 'Total throughput: ' Default.log; then ( echo -n $DATE " "; awk '/^Total throughput:/ {print $3}' Default.log ) >> Default.txt fi for i in $COMMON_TESTS; do /bin/sync sleep 10 ( cd $ACE_ROOT/TAO/performance-tests/Latency/${i}; ./run_test.pl > $DEST/source/${i}.log 2>&1 ) if grep -q 'Total throughput: ' ${i}.log; then ( echo -n $DATE " "; awk '/^Total throughput:/ {print $3}' ${i}.log ) >> ${i}.txt fi done for i in $COMMON_TESTS TCP Default; do $ACE_ROOT/bin/generate_performance_chart.sh ${i}.txt ${i}.png "$i" /bin/cp ${i}.png $DEST/images/${i}.png /usr/bin/tac ${i}.txt > $DEST/data/${i}.txt /usr/bin/tail -5 ${i}.txt > $DEST/data/LAST_${i}.txt done gnuplot <<_EOF_ >/dev/null 2>&1 set xdata time set timefmt '%Y/%m/%d-%H:%M' set xlabel 'Date (YYYYMMDD)' set ylabel 'Throughput (Requests/Second)' set yrange [0:] set terminal png small color set output "/dev/null" plot 'DII.txt' using 1:2 title 'DII' w l replot 'DSI.txt' using 1:2 title 'DSI' w l replot 'Deferred.txt' using 1:2 title 'Deferred' w l replot 'Single_Threaded.txt' using 1:2 title 'Single_Threaded' w l replot 'Default.txt' using 1:2 title 'Single_Threaded (Defaults)' w l replot 'Thread_Per_Connection.txt' using 1:2 title 'Thread_Per_Connection' w l replot 'Thread_Pool.txt' using 1:2 title 'Thread_Pool' w l replot 'TCP.txt' using 1:2 title 'TCP/IP' w l set output "All.png" replot exit _EOF_ gnuplot <<_EOF_ >/dev/null 2>&1 set xdata time set timefmt '%Y/%m/%d-%H:%M' set xlabel 'Date (YYYYMMDD)' set ylabel 'Throughput (Requests/Second)' set yrange [0:10000] set terminal png small color set output "/dev/null" plot 'DII.txt' using 1:2 title 'DII' w l replot 'DSI.txt' using 1:2 title 'DSI' w l replot 'Deferred.txt' using 1:2 title 'Deferred' w l replot 'Single_Threaded.txt' using 1:2 title 'Single_Threaded' w l replot 'Default.txt' using 1:2 title 'Single_Threaded (Defaults)' w l replot 'Thread_Per_Connection.txt' using 1:2 title 'Thread_Per_Connection' w l replot 'Thread_Pool.txt' using 1:2 title 'Thread_Pool' w l set output "CORBA.png" replot exit _EOF_ /bin/cp CORBA.png All.png $DEST/images/ ( cd $DEST/images /bin/cp *.png thumbnails for i in *.png; do /usr/bin/X11/mogrify -geometry '25%' thumbnails/$i done ) cd $DEST/data /bin/uname -a > uname.txt /usr/bin/gcc -v > gcc.txt 2>&1 /lib/libc.so.6 | sed -e 's//\>/g' > libc.txt cat /proc/cpuinfo > cpuinfo.txt cat /proc/meminfo > meminfo.txt cat $ACE_ROOT/ace/config.h > config.h.txt cat $ACE_ROOT/include/makeinclude/platform_macros.GNU > platform_macros.GNU.txt