Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Well, I have to say that YourKit/jprofiler is a best Java performance tuning tool, but it need licence so it don't fit me at this moment, could you guys have alternative performance tuning tool? If it is free that would be deeply appreciated.

it need having some features like YourKit that can capturize/monitor all methods which are invoked in a certain period time and reports all details with calling structure.

I tried Oracle JRockit Mission Control, to me it seems having some lacks, especially you must add these methods that need to be monitored. its not a good idea since many times I don't even know which methods are being called and who is the caller. so it didnot give me comprehensive view to tuning performance issue.

share|improve this question

1 Answer

up vote 1 down vote accepted

i have used JProfiler and yourkit but i am not satisfied with output for actual performance tuning. currently we have been switched to java melody. This not only help performance optimization in dev but also in production system. Java melody is very easy to integrate and configure and in production you can enable or disable by just updating web.xml

and forgot to mention there is no licensing cost :)

We are using JProfiler only in case of CPU Profiling in extreme situation or dead lock detection.

share|improve this answer
Java melody only capturizes the HTTP request/response? Is the tool able to go all in-depth codes/methods for example(Business logic level or DAO level)? – C.c Jul 17 '12 at 9:02
yes you can integrate with Spring spring with melody – Jigar Parekh Jul 17 '12 at 11:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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