display avg object size in bytes

This commit is contained in:
barisusakli
2015-12-26 08:40:08 +02:00
parent ac77f78d6b
commit 7185463d81
2 changed files with 2 additions and 2 deletions

View File

@@ -209,7 +209,7 @@
stats.network = results.serverStatus.network;
stats.raw = JSON.stringify(stats, null, 4);
stats.avgObjSize = (stats.avgObjSize / 1024).toFixed(2);
stats.avgObjSize = stats.avgObjSize.toFixed(2);
stats.dataSize = (stats.dataSize / scale).toFixed(2);
stats.storageSize = (stats.storageSize / scale).toFixed(2);
stats.fileSize = stats.fileSize ? (stats.fileSize / scale).toFixed(2) : 0;