diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-01-31 20:48:51 +0100 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-01-31 20:48:51 +0100 |
commit | 007bface04f6bd11f3149fcf5ced79f100f9db95 (patch) | |
tree | b01157d29a58158e8d6305e28229533088622264 /tools/performance_test/performance_test.gnuplot | |
parent | 469f2c84d8c7416056655be79edfe8f7bff4ab1f (diff) |
Performance test: Fix bugs with older top version and label axes in plots.
Diffstat (limited to 'tools/performance_test/performance_test.gnuplot')
-rw-r--r-- | tools/performance_test/performance_test.gnuplot | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/performance_test/performance_test.gnuplot b/tools/performance_test/performance_test.gnuplot index 900a1d0..a145100 100644 --- a/tools/performance_test/performance_test.gnuplot +++ b/tools/performance_test/performance_test.gnuplot @@ -1,6 +1,9 @@ set style line 1 lc rgb '#0060ad' lt 1 lw 2 pt 7 ps 1.5 set terminal png size 400,300 enhanced font "Helvetica,10" +set xlabel "time" set output 'cpu_data.png' +set ylabel "CPU usage in %" plot 'cpu_data.dat' with linespoints ls 1 set output 'ram_data.png' +set ylabel "RAM usage in %" plot 'ram_data.dat' with linespoints ls 1 |