mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
23 lines
No EOL
563 B
Lua
23 lines
No EOL
563 B
Lua
--
|
|
-- (C) 2016-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
-- #################################
|
|
|
|
local profiling = {}
|
|
|
|
-- #################################
|
|
|
|
function profiling.get_current_memory(file)
|
|
require "lua_trace"
|
|
|
|
local lua_memory_usage = collectgarbage("count")
|
|
traceError(TRACE_NORMAL, TRACE_CONSOLE, "Currently executing file: " .. file .. "; Current LUA memory usage: " .. lua_memory_usage .. " KB")
|
|
end
|
|
|
|
-- #################################
|
|
|
|
return profiling |