skip Totals if there is only 1 cpu
This commit is contained in:
parent
8e8cd18e16
commit
ee0f0c774a
|
@ -62,9 +62,11 @@ public class CpuInfo extends SigarCommandBase {
|
||||||
output(cpus[i]);
|
output(cpus[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (infos.length > 1) {
|
||||||
println("Totals........");
|
println("Totals........");
|
||||||
output(this.sigar.getCpuPerc());
|
output(this.sigar.getCpuPerc());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
new CpuInfo().processCommand(args);
|
new CpuInfo().processCommand(args);
|
||||||
|
|
Loading…
Reference in New Issue