mm = 0.6 thick = 0.09 pp = 0.4 set terminal png small color set key box set title "128 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:30000] set output 'test128.png' plot 'sp-128.dat' smooth unique title "poll()" with lines 1 1,\ 'dp-128.dat' smooth unique title "/dev/poll" with lines 2 1,\ 'ep-128.dat' smooth unique title "/dev/epoll" with lines 3 1,\ 'rs-128.dat' smooth unique title "rtsig" with lines 4 1,\ 'ro-128.dat' smooth unique title "rtsig-one" with lines 5 1 set title "512 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:20000] set output 'test512.png' plot 'sp-512.dat' smooth unique title "poll()" with lines 1 1,\ 'dp-512.dat' smooth unique title "/dev/poll" with lines 2 1,\ 'ep-512.dat' smooth unique title "/dev/epoll" with lines 3 1,\ 'rs-128.dat' smooth unique title "rtsig" with lines 4 1,\ 'ro-128.dat' smooth unique title "rtsig-one" with lines 5 1 set title "1024 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:13000] set output 'test1024.png' plot 'sp-1024.dat' smooth unique title "poll()" with lines 1 1,\ 'dp-1024.dat' smooth unique title "/dev/poll" with lines 2 1,\ 'ep-1024.dat' smooth unique title "/dev/epoll" with lines 3 1,\ 'rs-128.dat' smooth unique title "rtsig" with lines 4 1,\ 'ro-128.dat' smooth unique title "rtsig-one" with lines 5 1 set title "128 Bytes Content-Length - Burst 27000 test" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:10000] set output 'test-b128.png' plot 'sp-b128.dat' smooth unique title "poll()" with lines 1 1,\ 'dp-b128.dat' smooth unique title "/dev/poll" with lines 2 1,\ 'ep-b128.dat' smooth unique title "/dev/epoll" with lines 3 1,\ 'rs-b128.dat' smooth unique title "rtsig" with lines 4 1,\ 'ro-b128.dat' smooth unique title "rtsig-one" with lines 5 1