mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
61 lines
1.5 KiB
Lua
61 lines
1.5 KiB
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
-- io.write ("Session:".._SESSION["session"].."\n")
|
|
require "lua_utils"
|
|
|
|
local page_utils = require("page_utils")
|
|
|
|
interface.select(ifname)
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
|
|
page_utils.print_header_and_set_active_menu_entry(page_utils.menu_entries.live_capture)
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
|
|
local rc = interface.dumpLiveCaptures()
|
|
|
|
print("<HR><H2>"..i18n("live_capture.active_live_captures").."</H2>")
|
|
|
|
print [[
|
|
<div id="livecaptures"></div>
|
|
|
|
<script>
|
|
$("#livecaptures").datatable({
|
|
title: "",
|
|
url: "/lua/live_capture_data.lua",
|
|
columns: [
|
|
{
|
|
title: "Capture Host",
|
|
field: "host",
|
|
}, {
|
|
title: "Captured Packets",
|
|
field: "num_captured_packets",
|
|
}, {
|
|
title: "Capture Until",
|
|
field: "capture_until",
|
|
}, {
|
|
title: "Action",
|
|
field: "stop_href",
|
|
}
|
|
],
|
|
});
|
|
|
|
function reloadTable() {
|
|
$("#livecaptures").data("datatable").render();
|
|
setTimeout(reloadTable, 10000); /* Refresh content every a few seconds */
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
setTimeout(reloadTable, 10000); /* Refresh content every a few seconds */
|
|
});
|
|
|
|
</script>
|
|
]]
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|