I need some means of recording the performance of an application on a Linux machine. I won't have an IDE.
Ideally, I need an app that will attach to a process and log periodic snapshots of: memory usage number of threads CPU usage
Any ideas?
|
|
|
If you are looking for things to do to possibly speed up the program, you need stackshots. A simple way to do this is to use the pstack utility, or lsstack if you can get it. You can do better than gprof. If you want to use an official profiling tool, you want something that samples the call stack on wall-clock time and presents line-level cost, such as Oprofile or RotateRight/Zoom. |
|||
|
|
|
Quoting Linus Torvalds himself:
and later ...
See: http://marc.info/?l=git&m=126262088816902&w=2 Good luck! |
|||
|
|
|
You can use valgrind. It records data in a file which you can analyse later using a proper gui like KCacheGrind A usage example would be :
It'll generate a file called edit: unlike gprof valgrind works with many different languages including java with some limitations. |
||||
|
|
Well, in order to collect this types of information about your process you don't actuall need a profiler on Linux.
or
and you wiil get this:
2) You can use
In order to do this you need to use As for Linux 1) To record performance data:
or to record for 10 secs:
or to record with call graph ()
2) To analyze the recorded data
Here I wrote some more information on using Linux perf: Alternatives to gprof |
||||
|
|
|
Have you looked into gprof? You need to compile the code with the -pg option, which instruments the code. After that you can run the prorgam and use gprof to see the results. |
|||
|
|