码迷,mamicode.com
首页 > 其他好文 > 详细

JVM

时间:2018-04-27 19:46:31      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:查看   垃圾回收   das   情况   ber   ror   jvm   dump   ash   

-XX:+HeapDumpOnOutOfMemoryError  生成内存快照;设置路径:-XX:HeapDumpPath=<path>

-XX:OnOutOfMemoryError ="sh ~/cleanup.sh"  当内存溢出时,执行脚本

查看垃圾回收的执行情况:

jstat -gcutil pid 1000 10   1000是输出时间间隔,单位毫秒,10 是输出记录的数目

  1. S0  — Heap上的 Survivor space 0 区已使用空间的百分比  
  2. S1  — Heap上的 Survivor space 1 区已使用空间的百分比  
  3. E   — Heap上的 Eden space 区已使用空间的百分比  
  4. O   — Heap上的 Old space 区已使用空间的百分比  
  5. P   — Perm space 区已使用空间的百分比  
  6. YGC — 从应用程序启动到采样时发生 Young GC 的次数  
  7. YGCT-- 从应用程序启动到采样时 Young GC 所用的时间(单位秒)  
  8. FGC — 从应用程序启动到采样时发生 Full GC 的次数  
  9. FGCT-- 从应用程序启动到采样时 Full GC 所用的时间(单位秒)  
  10. GCT — 从应用程序启动到采样时用于垃圾回收的总时间(单位秒)  

JVM

标签:查看   垃圾回收   das   情况   ber   ror   jvm   dump   ash   

原文地址:https://www.cnblogs.com/tengpan-cn/p/8963666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!