You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
504 B

reset
set term jpeg
set output "throughput.jpg"
#set xlabel "Reservation Utilization %"
#set xlabel "Load %"
set xlabel "All Requests/sec"
set ylabel "Successful Requests/sec"
set xrange [0:]
set yrange [0:]
plot for [t_id in tenant_ids] 'throughput_'.t_id.'.dat' using 1:2 title t_id w lp
#plot 'throughput_A.dat' using 1:2 title 'Tenant A Throughput' linetype 1 linecolor 1 with linespoints,\
# 'throughput_B.dat' using 1:2 title 'Tenant B Throughput' linetype 2 linecolor 2 with linespoints