mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
Fixes for capture from nProbe Agent
- Add missing protocol guess - Fix flows filter by L4 protocol - Fix traffic profile filter validation - Fix missing apps in the l7 dropdown - Fix bad unidirectional flow status with ebpf flows - Fix broken flows refresh in username_details.lua
This commit is contained in:
parent
2de94d9226
commit
fa730db28f
9 changed files with 25 additions and 6 deletions
|
|
@ -215,7 +215,7 @@ function format_utils.formatMillis(x)
|
|||
if(x == 0) then return 0 end
|
||||
if(x < 0.1) then return "< 0.1 ms" end
|
||||
|
||||
return string.format("%s ms", format_utils.formatValue(x))
|
||||
return string.format("%.2f ms", format_utils.formatValue(x))
|
||||
end
|
||||
|
||||
function format_utils.formatContainer(cont)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue