fix used_percent Calculation formula (#1313)
This commit is contained in:
parent
bf4b009a21
commit
8baeb42c0f
|
@ -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.
|
designed for informational purposes only.
|
||||||
- **free**: memory not being used at all (zeroed) that is readily available; note
|
- **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).
|
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:
|
## Measurements:
|
||||||
#### Raw Memory measurements:
|
#### Raw Memory measurements:
|
||||||
|
|
Loading…
Reference in New Issue