java profile 본문

Programming/Java

java profile

halatha 2013. 9. 19. 13:09

$ java -version


http://kenshin579.tistory.com/entry/Java-Profiling-with-hprof-default-java-profiler


$ java -Xrunhprof -cp .:./ahocorasick_java-1.1/dist/org.arabidopsis.ahocorasick-1.1.jar TestAC

$ tail java.hprof.txt


http://docs.oracle.com/javase/7/docs/technotes/samples/hprof.html


$ javac -J-agentlib:hprof=heap=sites -cp ./ahocorasick_java-1.1/dist/org.arabidopsis.ahocorasick-1.1.jar T
estAC.java

Dumping allocation sites ... done.

$ tail java.hprof.txt


cf.

http://perfinsp.sourceforge.net/jprof.html

http://docs.jboss.org/jbossprofiler/doc/concept.html#Interceptors

http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-oprofile-configuring.html

Comments