Hi Guys, I need a tool which will give client side (java...

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

S

Surya Kosuri

Guest
Hi Guys, I need a tool which will give client side (java script,css,images) profiling for memory ,CPU utilization and other metrics. To verify in client side code level if any method is having bottleneck for more response time. If it is third party tool is also fine for me. (just looking only 100% client side profiling tool not server side). Thanks in advance.
 
Use HTTP watch or if you are using Chrome use built in feature 'inspect element'. Use firezilla for firefox or press F12 for IE
 
It will network and general cpu metrics but i need memory and cpu utilization level
 
For measuring CPU, memory use NMON (jconsole, jvisualvm won’t give any reports you have to observe during the run time) for Linux, for windows use perfmon. There are chances for two kind of bottleneck from the code level. Those are memory leaks and connection leaks. To analyse use code profiler tools similar jprobe,jprofiler ,jrocket etc.