mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
Fixes network speed indicator
This commit is contained in:
parent
4728baed14
commit
cb1d74ee3a
3 changed files with 7 additions and 7 deletions
|
|
@ -1504,11 +1504,11 @@ end
|
|||
|
||||
-- ###########################################
|
||||
|
||||
-- Note: the base unit is Kbit/s here
|
||||
-- Note: the base unit is Kbps here
|
||||
FMT_TO_DATA_RATES_KBPS = {
|
||||
["k"] = {label="kbit/s", value=1},
|
||||
["m"] = {label="Mbit/s", value=1000},
|
||||
["g"] = {label="Gbit/s", value=1000*1000},
|
||||
["k"] = {label="Kbps", value=1},
|
||||
["m"] = {label="Mbps", value=1000},
|
||||
["g"] = {label="Gbps", value=1000*1000},
|
||||
}
|
||||
|
||||
FMT_TO_DATA_BYTES = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue