mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
Implements stats for periodic scripts duration
This commit is contained in:
parent
22742fa0d5
commit
dc748b1b6d
17 changed files with 247 additions and 7 deletions
|
|
@ -205,7 +205,8 @@ end
|
|||
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("%.1f ms", x)
|
||||
|
||||
return string.format("%s ms", format_utils.formatValue(x))
|
||||
end
|
||||
|
||||
function format_utils.formatContainer(cont)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue