fix used_percent Calculation formula (#1313)

This commit is contained in:
Meng Ye 2016-06-02 21:24:48 +08:00 committed by Vladimir Sagan
parent bf4b009a21
commit 8baeb42c0f
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ It is supposed to be used to monitor actual memory usage in a cross platform fas
designed for informational purposes only.
- **free**: memory not being used at all (zeroed) that is readily available; note
that this doesn't reflect the actual memory available (use 'available' instead).
- **used_percent**: the percentage usage calculated as `(total - used) / total * 100`
- **used_percent**: the percentage usage calculated as `used / total * 100`
## Measurements:
#### Raw Memory measurements: