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

 




posted @   三国梦回  阅读(3908)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端
点击右上角即可分享
微信分享提示
CONTENTS