Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / bin / generate_performance_chart.sh
blobb8a0cb3bcc5cfd568ef4fa3c0471529e816ccc3c
1 #!/bin/sh
4 gnuplot <<_EOF_ >/dev/null 2>&1
5 set xdata time
6 set xtics rotate
7 set format x "%Y/%m/%d"
8 set timefmt '%Y/%m/%d-%H:%M'
9 set xlabel 'Date (YYYY/MM/DD)' 0,-3
10 set ylabel 'Throughput (Requests/Second)'
11 set terminal png small size $4 color
12 set yrange [0:]
13 set output "$2"
14 plot '$1' using 1:2 title '$3' w l
15 exit
16 _EOF_