System variables updated

From wiki.netio-products.com
Revision as of 17:25, 11 July 2019 by Phrych (talk | contribs) (Created page with "{{DISPLAYTITLE:Script trigger System variables updated}} Triggered when system variables are updated (approximately every 10 seconds). Arguments are stored in table <code>even...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Triggered when system variables are updated (approximately every 10 seconds). Arguments are stored in table event.args

Arguments

  • freeSpace
  • swapTotal
  • outgoingTraffic
  • cpuLoad
  • incomingTraffic
  • cpuIoWait
  • totalSpace
  • averageLoad
  • sessionCount

Print arguments

-- print all arguments
for i, v in pairs(event.args) do
  logf("%s: %s",tostring(i),tostring(v))
end