mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Fixed throughput multiplied by 8 (#8576)
This commit is contained in:
parent
e7430f97ea
commit
0c2fba604a
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ for _, value in ipairs(flows_stats.flows) do
|
|||
record["throughput"] = {
|
||||
type = throughput_type,
|
||||
pps = value["throughput_pps"],
|
||||
bps = 8 * (value["throughput_bps"] or 0),
|
||||
bps = (value["throughput_bps"] or 0),
|
||||
trend = value["throughput_trend_" .. throughput_type]
|
||||
}
|
||||
record["application"] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue