mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-07 13:48:33 +00:00
22 lines
418 B
Lua
22 lines
418 B
Lua
--
|
|
-- (C) 2013-19 - ntop.org
|
|
--
|
|
|
|
local probe = {
|
|
name = "CPU",
|
|
descripton = "Monitors the CPU usage",
|
|
}
|
|
|
|
-- ##############################################
|
|
|
|
function probe.runTask(when, ts_utils)
|
|
local cpu_load = ntop.refreshCpuLoad()
|
|
|
|
if(cpu_load ~= nil) then
|
|
ts_utils.append("system:cpu_load", {load_percentage = cpu_load}, when)
|
|
end
|
|
end
|
|
|
|
-- ##############################################
|
|
|
|
return probe
|