=================================================================
option mygcoption {
column {
header "^Timestamp"
data (sun.rt.createVmBeginTime + ((sun.os.hrt.ticks/sun.os.hrt.frequency) * 1000))
scale sec
align right
width 15
format "0.0"
}
column {
header "^S0C^"
data sun.gc.generation.0.space.1.capacity
scale K
align center
width 6
format "0.0"
}
column {
header "^S1C^"
data sun.gc.generation.0.space.2.capacity
scale K
align center
width 6
format "0.0"
}
・・・・・省略・・・・・
column {
header "^FGCT^"
data sun.gc.collector.1.time/sun.os.hrt.frequency
align right
width 8
scale sec
format "0.000"
}
column {
header "^GCT^"
data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
align right
width 8
scale sec
format "0.000"
}
}
=================================================================