mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
55 lines
1.8 KiB
Lua
55 lines
1.8 KiB
Lua
-- ########################################################
|
|
|
|
local ts_utils = require("ts_utils_core")
|
|
local user_scripts = require("user_scripts")
|
|
local ts_dump = {}
|
|
|
|
-- ########################################################
|
|
|
|
function ts_dump.iface_update_periodic_ht_state_update_stats(when, ifid, periodic_ht_state_update_stats)
|
|
for ht_name, ht_stats in pairs(periodic_ht_state_update_stats) do
|
|
local num_calls = 0
|
|
local num_ms = 0
|
|
|
|
if ht_stats["stats"] then
|
|
if ht_stats["stats"]["num_calls"] then
|
|
num_calls = ht_stats["stats"]["num_calls"]
|
|
end
|
|
if ht_stats["stats"]["tot_duration_ms"] then
|
|
num_ms = ht_stats["stats"]["tot_duration_ms"]
|
|
end
|
|
end
|
|
|
|
ts_utils.append("ht:lua_calls", {ifid = ifid, hash_table = ht_name, num_ms = num_ms, num_calls = num_calls}, when, verbose)
|
|
end
|
|
end
|
|
|
|
-- ########################################################
|
|
|
|
function ts_dump.update_user_scripts_stats(when, ifid, verbose)
|
|
-- NOTE: interface/host/network scripts are monitored in minute.lua
|
|
local all_scripts = {
|
|
flow = user_scripts.script_types.flow,
|
|
}
|
|
|
|
user_scripts.ts_dump(when, ifid, verbose, "flow_user_script", all_scripts)
|
|
end
|
|
|
|
-- ########################################################
|
|
|
|
function ts_dump.run_5sec_dump(ifid, periodic_ht_state_update_stats)
|
|
local iface_rrd_creation_enabled = (ntop.getPref("ntopng.prefs.ifid_"..ifid..".interface_rrd_creation") ~= "false")
|
|
and (ntop.getPref("ntopng.prefs.interface_rrd_creation") ~= "0")
|
|
local when = os.time()
|
|
|
|
if not iface_rrd_creation_enabled then
|
|
return
|
|
end
|
|
|
|
ts_dump.iface_update_periodic_ht_state_update_stats(when, ifid, periodic_ht_state_update_stats)
|
|
ts_dump.update_user_scripts_stats(when, ifid, verbose)
|
|
end
|
|
|
|
-- ########################################################
|
|
|
|
return ts_dump
|