mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
Fix flow verdict
This commit is contained in:
parent
051ddde079
commit
5cad80662f
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ for _, value in ipairs(flows_stats.flows) do
|
|||
record["last_seen"] = value["seen.last"]
|
||||
record["key"] = string.format("%u", value["ntopng.key"])
|
||||
record["hash_id"] = string.format("%u", value["hash_entry_id"])
|
||||
record["verdict"] = value["verdict.pass"]
|
||||
record["verdict"] = not (value["verdict.pass"] ~= nil and value["verdict.pass"] == false)
|
||||
record["duration"] = value["duration"]
|
||||
record["info"] = value["info"]
|
||||
record["periodic_flow"] = value.periodic_flow
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue