Reputation: 1488
Have you ever wanted to test and quantitatively show whether your application would perform better as a static build or shared build, stripped or non-stripped, upx or no upx, gcc -O2 or gcc -O3, hash or btree, etc etc. If so this is the thread for you. There are hundreds of ways to tune an application, but how do we collect, organize, process, visualize the consequences of each experiment.
I have been looking for several months for an open source application performance engineering/profiling framework similar in concept to Mozilla's Perftastic where I can develop/build/test/profile hundreds of incarnations of different tuning experiments.
Some requirements:
SUSE32 and SUSE64
Very flexible, compact, simple, hierarchical. There are several possibilities including
Flexible and Customizable plugins. There is lots of data to collect from the application including performance data from /proc, sys time, wall time, cpu utilization, memory profile, leaks, valgrind logs, arena fragmentation, I/O, localhost sockets, binary size, open fds, etc. And some from the host system. My language of choice for this is Python, and I would develop these plugins to monitor and/or parse data in all different formats and store them in the data format of the framework.
All experiments would be tagged including data like GCC version and compile options, platform, host, app options, experiment, build tag, etc.
History, Comparative, Hierarchical, Dynamic and Static.
All of this would be presented and controlled through a app server, preferably Django or TG would be best.
Upvotes: 7
Views: 1244
Reputation: 40659
You may have to build what you're looking for, but you might start from
Also, when the purpose is not so much to measure performance as to improve it, you might get some ideas from this, where this is an example of its use.
Upvotes: 0
Reputation: 3076
There was a talk at PyCon this week discussing the various profiling methods on Python today. I don't think anything is as complete as what your looking for, but it may be worth a look. http://us.pycon.org/2009/conference/schedule/event/15/
You should be able to find the actual talk later this week on blip.tv http://blip.tv/search?q=pycon&x=0&y=0
Upvotes: 2
Reputation: 7288
I'm not sure what your question is precisely, but for profiling Java (web)applications you can use the netbeans profiler and profiler4j (available on sourceforge). I have used both and can recommend them over eclipse tptp.
See How to set up Eclipse TPTP
and http://profiler4j.sourceforge.net/
edit: Sorry, just noticed you tagged this as Python question, so this must not be a valid answer for you.
Upvotes: 0