JVM學習--開啟應用的gc日志功能


一、開啟方法

For Java 1.4, 5, 6, 7, 8 pass this JVM argument to your application: -XX:+PrintGCDetails -XX:+PrintGCDateStamps -Xloggc:<file-path>

For Java 9, pass the JVM argument: -Xlog:gc*:file=<file-path>
file-path: is the location where GC log file will be written

 

 如果是需要給運行中的JVM打開日志功能,可參考:

http://www.importnew.com/15722.html

 

二、測試

 

代碼:

public class testAllocation {
    private static final int _1MB=1024*1024;

    public static void main(String[] args) {
        byte[] allocation1;
        byte[] allocation2;
        byte[] allocation3;
        byte[] allocation4;
        allocation1=new byte[2*_1MB];
        allocation2=new byte[2*_1MB];
        allocation3=new byte[2*_1MB];
        allocation4=new byte[4*_1MB]; //出現一次Minor GC
    }
}

 

1、輸出到標准輸出

E:\javabase\out\production\javabase>java -XX:+PrintGCDetails -XX:+PrintGCDateSta
mps  -Xms20M -Xmx20M -Xmn10M testAllocation
Heap
 PSYoungGen      total 9216K, used 7644K [0x00000000ff600000, 0x0000000100000000
, 0x0000000100000000)
  eden space 8192K, 93% used [0x00000000ff600000,0x00000000ffd77070,0x00000000ff
e00000)
  from space 1024K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000001000
00000)
  to   space 1024K, 0% used [0x00000000ffe00000,0x00000000ffe00000,0x00000000fff
00000)
 ParOldGen       total 10240K, used 4096K [0x00000000fec00000, 0x00000000ff60000
0, 0x00000000ff600000)
  object space 10240K, 40% used [0x00000000fec00000,0x00000000ff000010,0x0000000
0ff600000)
 Metaspace       used 2521K, capacity 4486K, committed 4864K, reserved 1056768K
  class space    used 271K, capacity 386K, committed 512K, reserved 1048576K

 

2、輸出到文件

E:\javabase\out\production\javabase>java -XX:+PrintGCDetails -XX:+PrintGCDateSta
mps -Xloggc:testAllocation-gc.log -Xms20M -Xmx20M -Xmn10M testAllocation

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM