jstat查看gc状态信息

jstat -gc <pid>
S0C  Current survivor space 0 capacity (KB).   当前survivor0的容量
S1C  Current survivor space 1 capacity (KB).   当前survivor1的容量
S0U  Survivor space 0 utilization (KB).    survivor0的使用
S1U  Survivor space 1 utilization (KB).    survivor1的使用
EC  Current eden space capacity (KB).    当前eden的容量
EU  Eden space utilization (KB).              eden的使用
OC  Current old space capacity (KB).      当前old的容量
OU  Old space utilization (KB).                old的使用
PC  Current permanent space capacity (KB).         当前perm的容量
PU  Permanent space utilization (KB).                    perm的使用
YGC  Number of young generation GC Events.       young gc的次数
YGCT  Young generation garbage collection time.   young gc的总时间
FGC  Number of full GC events.                full gc的次数
FGCT  Full garbage collection time.          full gc的总时间
GCT  Total garbage collection time.         所有gc的总时间

你可能感兴趣的:(jstat查看gc状态信息)