!7 sclass Info { S computerID; S load; } module GatherSystemLoads > DynObjectTable { start { doEvery(1.0, 10.0, r gather); } void gather enter { time "Gather System Loads" { new L l; for (S computerID : dm_onlineComputers()) pcall-short { l.add(nu(Info, +computerID, load := str(dm_evalOnOtherMachine(computerID, "systemLoad()")))); } setData(l); } } }