jstat之gcutil数据解析

2022-05-10  本文已影响0人  Crud仔

官方文档

命令格式jstat -gcutil pid interval(ms)

例如

##pid为1350的应用的情况,每1秒钟显示一次
$ jstat -gcutil 1350 1000
S0     S1     E      O      M     CCS    YGC     YGCT     FGC    FGCT     CGC    CGCT       GCT
0.00  96.60  44.74   2.44  98.65  96.50    5     0.065     0     0.000     2     0.002     0.067
0.00  96.60  44.74   2.44  98.65  96.50    5     0.065     0     0.000     2     0.002     0.067
0.00  96.60  44.74   2.44  98.65  96.50    5     0.065     0     0.000     2     0.002     0.067
0.00  96.60  44.74   2.44  98.65  96.50    5     0.065     0     0.000     2     0.002     0.067
缩写 含义 原文
S0 新生代中Survivor space 0区已使用空间的百分比 Survivor space 0 utilization as a percentage of the space's current capacity.
S1 新生代中Survivor space 1区已使用空间的百分比 Survivor space 1 utilization as a percentage of the space's current capacity.
E 新生代已使用空间的百分比 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 YGC事件的数量 Number of young generation GC events.
YGCT 年轻一代垃圾收集时间 Young generation garbage collection time
FGC FGC事件的数量 Number of full GC events.
FGCT 完全垃圾收集时间 Full garbage collection time
CGC 并发GC统计 Concurrent GC Count
CGCT 并发GC收集时间 Concurrent GC Collection Time
GCT 垃圾回收总时间 Total garbage collection time.

CGC和CGCT是ZGC的标志,ZGC是一个并发垃圾回收器。 ZGC (The Z Garbage Collector)是JDK 11中推出的一款低延迟垃圾回收器

上一篇 下一篇

猜你喜欢

热点阅读