Added logic to detect flows with low goodput (e.g. originated by tools like https://github.com/shekyan/slowhttptest)

This commit is contained in:
Luca 2016-03-08 19:18:28 +01:00
parent 6a7929ea26
commit 8f0f8fc1cf
12 changed files with 152 additions and 92 deletions

View file

@ -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"])