mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 08:50:12 +00:00
Plugins are a convenient way to group together related lua scripts. Their primary use case is to group user scripts and their alert/status definition. The builtin ntopng user scripts and definitions are now packed into plugins directories. In future, we will support loading of user created plugins. Plugins are loaded at startup into some runtime directories and then used. Other changes provided by this commit include: - Add sample flow logger plugin - Initial support for system user scripts - Rename edge to threshold - Migrate system probes to user scripts/plugins - Migrate scripts to more explicit alerts_api.checkThresholdAlert api
233 lines
8.4 KiB
Lua
233 lines
8.4 KiB
Lua
--
|
|
-- (C) 2014-19 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
local alerts_api = require "alerts_api"
|
|
local format_utils = require "format_utils"
|
|
local user_scripts = require "user_scripts"
|
|
local ts_utils = require("ts_utils")
|
|
|
|
local flow_callbacks_utils = {}
|
|
|
|
local ifid = interface.getId()
|
|
|
|
-- ##############################################
|
|
|
|
local function printStatsCols(total_stats, cur_elapsed, cur_num_calls, cur_avg_speed)
|
|
print("<td align='center'>".. format_utils.secondsToTime(cur_elapsed) .." (" .. string.format("%.1f", cur_elapsed * 100 / total_stats.tot_elapsed) .. "%)</td>")
|
|
print("<td align='center'>".. format_utils.formatValue(cur_num_calls) .." (" .. string.format("%.1f", cur_num_calls * 100 / total_stats.tot_num_calls) .. "%)</td>")
|
|
print("<td align='center'>".. format_utils.formatValue(round(cur_avg_speed, 0)) .."</td>")
|
|
end
|
|
|
|
-- ##############################################
|
|
|
|
local function print_callbacks_config_table(descr, expert_view)
|
|
print[[<table id="callbacks_config_table" class="table table-bordered table-striped">]]
|
|
print[[<tr>]]
|
|
print[[<th width=40%>]] print(i18n("flow_callbacks.callback")) print[[</th>]]
|
|
print[[<th style="text-align: center;" width="5%">]] print(i18n("chart")) print[[</th>]]
|
|
print[[<th width="20%">]] print(i18n("flow_callbacks.callback_config")) print[[</th>]]
|
|
if(expert_view) then
|
|
print[[<th>]] print(i18n("flow_callbacks.callback_function")) print[[</th>]]
|
|
end
|
|
print[[<th style="text-align: center;">]] print(i18n("flow_callbacks.last_duration")) print[[</th>]]
|
|
print[[<th style="text-align: center;">]] print(i18n("flow_callbacks.last_num_calls")) print[[</th>]]
|
|
print[[<th style="text-align: center;">]] print(i18n("flow_callbacks.last_calls_per_sec")) print[[</th>]]
|
|
print[[</tr>]]
|
|
|
|
print('<input id="csrf" name="csrf" type="hidden" value="'..ntop.getRandomCSRFValue()..'" />\n')
|
|
|
|
local total_stats = {
|
|
tot_elapsed = 0,
|
|
tot_num_calls = 0,
|
|
}
|
|
|
|
local benchmarks = user_scripts.getLastBenchmark(ifid, "flow")
|
|
|
|
-- A user module link is currently required for the total
|
|
local total_user_module = nil
|
|
|
|
for mod_k, user_script in pairsByKeys(descr.modules, asc) do
|
|
local hooks_benchmarks = benchmarks[mod_k] or {}
|
|
|
|
-- Calculate the total stats
|
|
for _, mod_benchmark in pairs(hooks_benchmarks) do
|
|
total_stats.tot_elapsed = total_stats.tot_elapsed + mod_benchmark["tot_elapsed"]
|
|
total_stats.tot_num_calls = total_stats.tot_num_calls + mod_benchmark["tot_num_calls"]
|
|
end
|
|
end
|
|
|
|
for mod_k, user_script in pairsByKeys(descr.modules, asc) do
|
|
local hooks_benchmarks = benchmarks[mod_k] or {}
|
|
local num_hooks = table.len(hooks_benchmarks)
|
|
local title
|
|
local description
|
|
local rowspan = ""
|
|
|
|
if(not total_user_module) then
|
|
total_user_module = mod_k
|
|
end
|
|
|
|
if(user_script.gui) then
|
|
title = i18n(user_script.gui.i18n_title) or user_script.gui.i18n_title
|
|
description = i18n(user_script.gui.i18n_description) or user_script.gui.i18n_description
|
|
else
|
|
title = user_script.key
|
|
description = ""
|
|
end
|
|
|
|
if(expert_view and (num_hooks > 0)) then
|
|
rowspan = string.format(' rowspan="%d"', num_hooks)
|
|
end
|
|
|
|
print("<tr><td ".. rowspan .."><b>".. title .."</b><br>")
|
|
print("<small>"..description..".</small></td>")
|
|
|
|
print("<td ".. rowspan .." class='text-center'>")
|
|
|
|
if(ts_utils.exists("flow_user_script:duration", {ifid=ifid, user_script=mod_k, subdir="flow"})) then
|
|
print('<a href="'.. ntop.getHttpPrefix() ..'/lua/user_script_details.lua?ifid='..ifid..'&user_script='..mod_k..'&subdir=flow"><i class="fa fa-chart-area fa-lg" data-original-title="" title=""></i></a>')
|
|
end
|
|
|
|
print("</td>")
|
|
|
|
print("<td ".. rowspan ..">")
|
|
if(user_script.gui and user_script.gui.input_builder) then
|
|
local conf = user_scripts.getConfiguration(user_script)
|
|
local k = user_script.key
|
|
|
|
-- TODO remove after implementing the new gui
|
|
local value = ternary(user_script.gui.post_handler == user_scripts.checkbox_post_handler, conf.enabled, conf.script_conf)
|
|
|
|
print(user_script.gui.input_builder(user_script.gui or {}, k, value))
|
|
else
|
|
print('<a href="'.. ntop.getHttpPrefix() ..'/lua/admin/prefs.lua?tab=alerts"><i class="fa fa-flask fa-lg"></i></a>')
|
|
end
|
|
print("</td>")
|
|
|
|
if(expert_view) then
|
|
if(num_hooks > 0) then
|
|
local ctr = 0
|
|
|
|
for mod_fn, mod_benchmark in pairsByKeys(hooks_benchmarks, asc) do
|
|
print("<td>".. mod_fn .."</td>")
|
|
|
|
local avg_speed = (mod_benchmark["tot_num_calls"] / mod_benchmark["tot_elapsed"])
|
|
|
|
printStatsCols(total_stats, mod_benchmark["tot_elapsed"], mod_benchmark["tot_num_calls"], avg_speed)
|
|
ctr = ctr + 1
|
|
|
|
if(ctr ~= num_hooks) then
|
|
print("</tr><tr>")
|
|
end
|
|
end
|
|
else
|
|
print("<td></td><td></td><td></td><td></td>")
|
|
end
|
|
else
|
|
if(num_hooks > 0) then
|
|
-- Accumulate the stats for each hook
|
|
local total_duration = 0
|
|
local num_calls = 0
|
|
|
|
for mod_fn, mod_benchmark in pairsByKeys(hooks_benchmarks, asc) do
|
|
total_duration = total_duration + mod_benchmark["tot_elapsed"]
|
|
num_calls = num_calls + mod_benchmark["tot_num_calls"]
|
|
end
|
|
|
|
local avg_speed = (num_calls / total_duration)
|
|
|
|
printStatsCols(total_stats, total_duration, num_calls, avg_speed)
|
|
else
|
|
print("<td></td><td></td><td></td>")
|
|
end
|
|
end
|
|
end
|
|
|
|
local avg_speed = (total_stats.tot_num_calls / total_stats.tot_elapsed)
|
|
|
|
-- Print total stats
|
|
print("</tr><tr><td><b>" .. i18n("total") .. "</b></td><td class='text-center'>")
|
|
if(ts_utils.exists("flow_user_script:total_stats", {ifid=ifid, subdir="flow"})) then
|
|
print('<a href="'.. ntop.getHttpPrefix() ..'/lua/user_script_details.lua?ifid='..ifid..'&subdir=flow&user_script='.. total_user_module ..'&ts_schema=custom:flow_user_script:total_stats"><i class="fa fa-chart-area fa-lg"></i></a>')
|
|
end
|
|
print("<td>")
|
|
if(expert_view) then
|
|
print("<td></td>")
|
|
end
|
|
|
|
print("</tr>")
|
|
print[[</table>]]
|
|
end
|
|
|
|
-- #################################
|
|
|
|
function flow_callbacks_utils.print_callbacks_config()
|
|
local show_advanced_prefs = false
|
|
|
|
if(_GET["show_advanced_prefs"] == "1") then
|
|
show_advanced_prefs = true
|
|
end
|
|
|
|
local ifid = interface.getId()
|
|
local descr = user_scripts.load(ifid, user_scripts.script_types.flow, "flow")
|
|
|
|
print [[
|
|
|
|
<br>]]
|
|
|
|
if table.len(_POST) > 0 then
|
|
user_scripts.handlePOST("flow", descr)
|
|
end
|
|
|
|
print[[<form id="flow-callbacks-config" class="form-inline" method="post">]]
|
|
print_callbacks_config_table(descr, show_advanced_prefs)
|
|
print[[<input type=hidden name="show_advanced_prefs" value="]]if show_advanced_prefs then print("true") else print("false") end print[["/>]]
|
|
print[[<button class="btn btn-primary" style="float:right; margin-right:1em;" type="submit">]] print(i18n("save_configuration")) print[[</button>]]
|
|
print[[</form>]]
|
|
print[[
|
|
|
|
<form data-ays-ignore="true">
|
|
<input type=hidden name="page" value="callbacks" />
|
|
<input type=hidden name="tab" value="flows" />
|
|
<input type=hidden name="ifid" value="]] print(string.format("%d", ifid)) print[[" />
|
|
<input type=hidden name="show_advanced_prefs" value="]]if show_advanced_prefs then print("0") else print("1") end print[["/>
|
|
|
|
<div class="btn-group btn-toggle">
|
|
]]
|
|
|
|
local cls_on = "btn btn-sm"
|
|
local cls_off = cls_on
|
|
|
|
if show_advanced_prefs then
|
|
cls_on = cls_on..' btn-primary active'
|
|
cls_off = cls_off..' btn-secondary'
|
|
else
|
|
cls_on = cls_on..' btn-secondary'
|
|
cls_off = cls_off..' btn-primary active'
|
|
end
|
|
|
|
print('<button type="submit" class="'..cls_on..'">'..i18n("prefs.expert_view")..'</button>')
|
|
print('<button type="submit" class="'..cls_off..'">'..i18n("prefs.simple_view")..'</button>')
|
|
|
|
print[[
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
</script>
|
|
]]
|
|
|
|
print("<div style='margin-top:4em;'><b>" .. i18n("flow_callbacks.notes") .. ":</b><ul>")
|
|
|
|
print("<li>" .. i18n("flow_callbacks.note_flow_lifecycle") .. "</li>")
|
|
|
|
print("<li>" .. i18n("flow_callbacks.note_create_custom_scripts", {url = "https://github.com/ntop/ntopng/blob/dev/doc/README.developers.flow_lua_callbacks.md"}) .. "</li>")
|
|
print("<li>" .. i18n("flow_callbacks.note_add_custom_scripts", {url = ntop.getHttpPrefix().."/lua/directories.lua", product=ntop.getInfo()["product"]}) .. "</li>")
|
|
|
|
print("</ul></div>")
|
|
end
|
|
|
|
return flow_callbacks_utils
|