plot.plt 486 B

123456789101112131415161718
  1. set title "Memory Usage" font ",20"
  2. set term png small size 800,600
  3. set key box outside
  4. set output "mem-graph.png"
  5. set ylabel "RSZ"
  6. set format y '%.0s%cB'
  7. set ytics nomirror
  8. set yrange [0:*]
  9. plot "frps-mem.log" using 1 with lines axes x1y1 title "frps RSZ", \
  10. "frpc-mem.log" using 1 with lines axes x1y1 title "frpc RSZ", \
  11. "ratholes-mem.log" using 1 with lines axes x1y1 title "ratholes RSZ", \
  12. "ratholec-mem.log" using 1 with lines axes x1y1 title "ratholec RSZ"