Memory – Tool for Logging Memory Usage

memorymonitoring

I want to monitor memory usage of a process, and I want this data to be logged. Does such a tool exist?

Best Answer

I have written a script to do exactly this. It basically samples ps at specific intervals, to build up a profile of a particular process. The process can be launched by the monitoring tool itself, or it can be an independent process (specified by pid or command pattern).

Related Question