number devices.system.averageLoad

From wiki.netio-products.com
Revision as of 00:38, 16 April 2017 by Jturon (talk | contribs) (Usage)
Jump to navigation Jump to search

Returns the load (in percent) of the socket's CPU. The property is read only!

number devices.system.averageLoad

Value

number load of the CPU (in percent, 0-100)

Usage

-- log load of the CPU every minute
function logLoad()
  logf("%d", devices.system.averageLoad)
end

logLoad()