Created
March 30, 2016 13:56
-
-
Save Flackus/60d85958515bd222aaceef7eb6866e0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "set terminal png;\ | |
set datafile separator \",\";\ | |
set ylabel \"Mb\"; \ | |
set yrange [0:2000]; \ | |
plot \"mem.log\" using (\$0+1):(\$2/1000000) smooth csplines with line title \"rss\", \ | |
\"mem.log\" using (\$0+1):(\$3/1000000) smooth csplines with line title \"heapTotal\", \ | |
\"mem.log\" using (\$0+1):(\$4/1000000) smooth csplines with line title \"heapUsed\" \ | |
" | gnuplot -p > out.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment