mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
19 lines
No EOL
357 B
Lua
19 lines
No EOL
357 B
Lua
--
|
|
-- (C) 2013-15 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
require "graph_utils"
|
|
|
|
host_info = url2hostinfo(_GET)
|
|
|
|
sendHTTPHeader('application/json')
|
|
|
|
interface.select(ifname)
|
|
|
|
rsp = interface.getHostActivityMap(host_info["host"], host_info["vlan"])
|
|
|
|
print(rsp) |