1. 程式人生 > >Java jvm 效能檢視工具 jstat

Java jvm 效能檢視工具 jstat

jstat 官網: https://docs.oracle.com/javase/6/docs/technotes/tools/share/jstat.html

jstat 依賴jps 
1.jps 查詢程序號

2.jstat 檢視gc的使用情況

jstat -gcutil 5235 1000 7

S0:代表第一個倖存區

S1:代表第二個倖存區

E:代表伊甸園區

O: 代表老年代

M:代表方法區

CCS:壓縮空間類

YGC:年輕代垃圾回收的次數

YGCT: 年輕代垃圾回收的時間

FGC:老年代垃圾回收的次數

FGCT:老年代垃圾回收的時間

GCT:垃圾回收消耗的時間

常見jstat 使用命令

jstat -gc pid

jstat -gccapacity pid

jstat -gcutil pid

jstat -gcnew pid

jstat -gcnewcapacity pid

jstat -gcold pid

jstat -gcoldcapacity pid

jstat -gc permcapacity pid

jstat -class pid

jstat -compiler pid

jstat -printcompilation pid