Graphing ApacheBench Results Using GnuPlot

Ab / ApacheBench is a tool commonly used to perform benchmark by many people. unfortunately, the results are displayed somewhat difficult to read by most people. but it can be tricked by turning it into a plot image. this time, I will make examples how to change the results of apachebench into a form of image plots using gnuplot. although apachebench’s report is very helpful, we need to output the data in a parse-able format. To do this we use the -g switch which will output a gnuplot-friendly tab delimited table of data.

First we need to installed gnuplot if we don’t have it yet.

1$sudo yum -y install gnuplot

In this example i’ll benchmark request on static png file.

Run first webserver benchmark

1$ ab -k -n 50000 -c 100 -g server1.txt http://server1/server1.png

Run second webserver benchmark

1$ ab -k -n 50000 -c 100 -g server2.txt http://server2/server2.png

Example result server1.txt/server2.txt

1starttime       seconds ctime   dtime   ttime   wait
2Tue May 10 16:42:28 2011        1305020548      0       2       2       2
3Tue May 10 16:42:28 2011        1305020548      0       2       2       2
4Tue May 10 16:42:28 2011        1305020548      0       3       3       2
5Tue May 10 16:42:28 2011        1305020548      0       3       3       3
6Tue May 10 16:42:28 2011        1305020548      0       3       3       3
7Tue May 10 16:42:28 2011        1305020548      0       3       3       3
8Tue May 10 16:42:28 2011        1305020548      0       3       3       3
9Tue May 10 16:42:28 2011        1305020548      0       3       3       3


Now we’ll convert tab delimited tables datas into a nice image plot

Create plot template file called template.p, so it can be re-used easily for later test.

1# output as png image
2set terminal png
3 
4# save file to "benchmark.png"
5set output "benchmark.png"
6 
7# graph a title
8set title "ab -k -n 50000 -c 100"
9 
10# nicer aspect ratio for image size
11set size 1,0.7
12 
13# y-axis grid
14set grid y
15 
16# x-axis label
17set xlabel "request"
18 
19# y-axis label
20set ylabel "response time (ms)"
21 
22# plot data from "server1.txt" and "server2.txt" using column 9 with smooth sbezier lines
23plot "server1.txt" using 9 smooth sbezier with lines title "server1:", \
24     "server2.txt" using 9 smooth sbezier with lines title "server2:"

Run gnuplot to generate graph

1$ gnuplot template.p

Here’s an example of gnuplot graph

 

benchmark
gnuplot

3 Comments

  1. David

    Creates an empty image file. Is this missing a command from the template?

  2. David

    Yes, data produced, it looks like this:

    starttime seconds ctime dtime ttime wait
    Thu Jun 26 16:22:12 2014 1403796132 0 9 9 9

    and so on

Leave a Reply to David Cancel reply

Your email address will not be published. Required fields are marked *