CLOUDSTACK-8250: host cpu memory used reported incorrectly in host stat

This commit is contained in:
Abhinandan Prateek 2015-05-21 09:24:03 +05:30
parent 79ddd74340
commit 258d9b19dd
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class HostStatsEntry implements HostStats {
@Override
public double getUsedMemory() {
return (totalMemoryKBs - freeMemoryKBs);
return (totalMemoryKBs - freeMemoryKBs) * 1024;
}
@Override