Linux命令怎么查看jvm堆内存信息

简介

这篇文章主要介绍了linux命令如何查看jvm堆内存信息方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教,

pgrep -lf java

jmap -heap PID 

包含数量以及占用的空间大小

jmap -histo PID 

尤其是gc情况的监控,如果老年代发生full gc

那么很可能会导致内存泄漏的可能性

jstat -gcutil pid

属性参照:

  • S0: Survivor 0区的空间使用率 Survivor space 0 utilization as a percentage of the space’s current capacity.
  • S1: Survivor 1区的空间使用率 Survivor space 1 utilization as a percentage of the space’s current capacity.
  • E: Eden区的空间使用率 Eden space utilization as a percentage of the space’s current capacity.
  • O: 老年代的空间使用率 Old space utilization as a percentage of the space’s current capacity.
  • M: 元数据的空间使用率 Metaspace utilization as a percentage of the space’s current capacity.
  • CCS: 类指针压缩空间使用率 Compressed class space utilization as a percentage.
  • YGC: 新生代GC次数 Number of young generation GC events.
  • YGCT: 新生代GC总时长(从应用程序启动到采样时年轻代中gc所用时间 单位:s) Young generation garbage collection time.
  • FGC: Full GC次数 Number of full GC events.
  • FGCT: Full GC总时长(从应用程序启动到采样时old代(全gc)gc所用时间 单位:s) Full garbage collection time.
  • GCT: 总共的GC时长 (从应用程序启动到采样时gc用的总时间 单位:s)Total garbage collection time.

注:

  • full gc很具有代表性
  • full gc次数 和时间 指标很能显示系统性能问题
  • 这两个指标很大,很大程度上说明了程序中有问题,垃圾一直回收不掉

以上为个人经验,希望能给大家一个参考,也希望大家多多支持腾创网。

以上本篇文章的全部内容了,感兴趣的小伙伴可以看看,更多精彩内容关注腾创网www.tengchuangw.com

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容