I have a bat script which calls out to an exe and starts this off - I dont know what language it is written in (Probably C++)

I want to find a profiler that allows me to run a command a few times and gathers IO/CPU and other stats

It needs to be open source where possible

Any suggestions

link|improve this question

64% accept rate
2  
You can collect good cpu/IO usage stats on Windows Vista and above using Perfmon. Its also there on XP but not as good. – Ganesh R. Feb 4 '11 at 17:42
You won't find one. Profilers require special information to be within or about the executable. This requires special, implementation defined switches during compilation. People don't generally release products compiled this way. They run slow as hell for one thing. Unless you can recompile the program, and it sounds like you don't even know what the source looks like, you can't profile it. Provided this info as comment so you can hopefully delete the question before it's negged into oblivion. – Crazy Eddie Feb 4 '11 at 17:43
1  
I/O and CPU stats should definitely be available via performance counters. As @Noah says, the type of call tree correlation normally associated with profiling would require debug data, but since it doesn't seem like you care about that, the situation is nowhere near as grim as he says. – Ben Voigt Feb 4 '11 at 18:18
@Noah - Profilers don't necessarily need debug builds. (In fact I'd argue that profiling a debug build is somewhat beside the point.) Sure you need debug information (pdb files on VC++) to display meaningful results, but a release build really should be sufficient. (And is sufficient with one tool we work with: automatedqa.com/products/aqtime) – Martin Feb 8 '11 at 10:15
feedback

3 Answers

You may try Performance Analysis of Logs (PAL) - http://pal.codeplex.com It has predefined templates for major system metrics (see System Overview template).

It may automatically create quite impressive report including graphs and brief explanations on detected 'hotspots'.

link|improve this answer
feedback

I have used Glowcode (www.glowcode.com) in the past. It's not open source, but quite easy to use, can profile an executable, and is available on an evaluation basis as well.

I recall it was quite cheap as well.

link|improve this answer
feedback

For Windows, XPERF is your friend, and is a free download.

Check out the Windows Performace Analysis Tools site for more information on this and other tools.

Have fun!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.