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
#!/bin/bash | |
# Log and graph peformance metrics on a single process | |
# Based on: http://brunogirin.blogspot.com.au/2010/09/memory-usage-graphs-with-ps-and-gnuplot.html | |
# | |
# Requires gnuplot to be installed and on your path. | |
# | |
# Run: ./process_graph [process name] [pid] | |
DEFAULT_PROCNAME="Xorg" |