You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Incorrect conversion between megabytes and bytes HERE.
Also in the test file: tests/checks/mock/test_sysstat.py
'system.io.bytes_per_s': mb_s * 10**6
Should be
'system.io.bytes_per_s': mb_s * 2**20
I'm assuming here that we always mean Mebibytes when we say Megabytes. When metrics metadata is fully implemented the plan is to completely shift to the unambiguous kibi, mebi, gibi byte prefixes and no longer refer to the ambiguous kilo, mega, giga scientific prefixes for byte units.
The text was updated successfully, but these errors were encountered:
Incorrect conversion between megabytes and bytes HERE.
Also in the test file: tests/checks/mock/test_sysstat.py
Should be
I'm assuming here that we always mean Mebibytes when we say Megabytes. When metrics metadata is fully implemented the plan is to completely shift to the unambiguous kibi, mebi, gibi byte prefixes and no longer refer to the ambiguous kilo, mega, giga scientific prefixes for byte units.
The text was updated successfully, but these errors were encountered: