Authored by jack

net mbps

... ... @@ -122,7 +122,7 @@ public class PointBuilder {
return new Double(decimalFormat.format(value));
} else if (StringUtils.startsWith(key, "net.if")) {
//kBps
return new Double(decimalFormat.format((value / 8192)));
return new Double(decimalFormat.format((value / (1024 * 1024))));
} else if (StringUtils.startsWith(key, "vm.memory")) {
//MB
return new Double(decimalFormat.format((value / (1024 * 1024))));
... ...