mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Implement HTTP RTT Monitoring
This commit is contained in:
parent
7d5a8ba0f8
commit
0be214cfae
10 changed files with 229 additions and 101 deletions
|
|
@ -2144,6 +2144,16 @@ end
|
|||
|
||||
-- ##############################################
|
||||
|
||||
function unescapeHttpHost(host)
|
||||
if isEmptyString(host) then
|
||||
return(host)
|
||||
end
|
||||
|
||||
return string.gsub(string.gsub(host, "http:__", "http://"), "https:__", "https://")
|
||||
end
|
||||
|
||||
-- ##############################################
|
||||
|
||||
function harvestUnusedDir(path, min_epoch)
|
||||
local files = ntop.readdir(path)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue