Is there a tool that will run a command-line and report how much RAM was used total?
I'm imagining something analogous to /usr/bin/time
|
4
|
Is there a tool that will run a command-line and report how much RAM was used total? I'm imagining something analogous to /usr/bin/time |
||||
|
|
|
If the process runs for at least a couple seconds, then you can use the following bash script, which will run the given command line then print to stderr the peak RSS (substitute for
|
|||
|
|
|
|
Perhaps time(1) already does what you want. For instance:
But other profiling tools may give more accurate results depending on what you are looking for. |
||||||
|
|
|
/usr/bin/time maybe does what you want, actually. Something like. /usr/bin/time --format='(%Xtext+%Ddata %Mmax)' See time(1) for details... |
||||||
|
|
|
[Edit: well, this looked useful at first but always seems to return 0] Looks like
$ /usr/bin/time -v ls /
....
Command being timed: "ls /"
User time (seconds): 0.00
System time (seconds): 0.01
Percent of CPU this job got: 250%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.00
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 0
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 315
Voluntary context switches: 2
Involuntary context switches: 0
Swaps: 0
File system inputs: 0
File system outputs: 0
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
|
||||||||||||
|
|
|
You can use a tool like Valgrind to do this. |
|||
|
|
|
Well, if you really want to show the memory peak and some more in-depth statistics i recommend using a profiler such as valgrind. A nice valgrind front-end is alleyoop. |
|||
|
|