more info

This commit is contained in:
Doug MacEachern 2005-05-06 17:16:39 +00:00
parent 10a438d4e0
commit d780891c15
1 changed files with 3 additions and 0 deletions

View File

@ -43,6 +43,9 @@ public class CpuInfo extends SigarCommandBase {
println("Sys Time......" + CpuPerc.format(cpu.getSys()));
println("Idle Time....." + CpuPerc.format(cpu.getIdle()));
println("Wait Time....." + CpuPerc.format(cpu.getWait()));
println("Nice Time....." + CpuPerc.format(cpu.getNice()));
println("Combined......" + CpuPerc.format(cpu.getCombined()));
println("");
}
}