The following table lists all available statistical options, statOption, when using BEA JRockit. The tables that follow, summarize the columns that jstat outputs for each statOption.
statOption
Displays
-class
Statistics on the behavior of the class loader.
-compiler
Statistics of the behavior of the JRockit compiler.
-gc
Statistics of the behavior of the garbage collected heap.
-gcpause
Statistics of garbage collection pauses.
-printjit
Statistic on the latest JIT compiler operations.
-printopt
Statistic on the latest optimizing compiler operations.
-class statOption
Column
Description
Loaded
Number of classes loaded.
Bytes
Number of Kbytes loaded.
Unloaded
Number of classes unloaded.
Bytes
Number of Kbytes unloaded.
-compiler statOption
Column
Description
Compiled
Number of compilation tasks performed.
Jitted
Number of JIT compilation tasks performed.
Optimized
Number of optimization compilation tasks performed.
Time
Time spent performing compilation tasks.
TotalTimeJit
Time spent performing JIT compilation tasks.
TotalTimeOpt
Time spent performing optimizing compilation tasks.
-printjit statOption
Column
Description
Jitted
Number of JIT compilation tasks performed.
TotalTimeJit
Time spent performing JIT compilation tasks.
LastJitMethod
The last method compiled by the JIT.
-printopt statOption
Column
Description
Optimized
Number of optimization compilation tasks performed.
TotalTimeOpt
Time spent performing optimizing compilation tasks.
LastOptMethod
The last method compiled by the optimizing compiler.