blob: ed0e39765daa6cfe182f0652a728cde06f5e6bac (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
#!/bin/sh
#
# $Id$
#
if [ $# -lt 3 ]; then
echo "Usage: $0 <ACE_ROOT> <DEST> <DATE>"
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/Single_Threaded_Latency;
./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/${i}_Latency;
./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' -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
|