mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-11 03:11:50 +00:00
6 lines
269 B
Gnuplot
6 lines
269 B
Gnuplot
set output 'mem.png'
|
|
set term png
|
|
set key box left
|
|
set xlabel "Time (msec)"
|
|
set ylabel "Mem (MB)"
|
|
plot "mem.dat" using 1:($2/1e6) title 'HeapSys' with lines, "mem.dat" using 1:($3/1e6) title 'HeapAlloc' with lines, "mem.dat" using 1:($4/1e6) title 'HeapIdle' with lines |