mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Added logic to detect flows with low goodput (e.g. originated by tools like https://github.com/shekyan/slowhttptest)
This commit is contained in:
parent
6a7929ea26
commit
8f0f8fc1cf
12 changed files with 152 additions and 92 deletions
|
|
@ -438,7 +438,7 @@ for _key, _value in pairsByKeys(vals, funct) do
|
|||
-- if(value["category"] ~= nil) then print (", \"column_category\" : \"" .. value["category"] .. "\", ") else print (",") end
|
||||
print (", \"column_proto_l4\" : \"")
|
||||
|
||||
if(value["tcp.seq_problems"] == true) then
|
||||
if((value["tcp.seq_problems"] == true) or (value["flow_goodput.low"] == true)) then
|
||||
print("<font color=#B94A48>"..value["proto.l4"].."</font>")
|
||||
else
|
||||
print(value["proto.l4"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue