!7 cmodule HotSpotCompilationCPUPercentage > DynBigNumber { transient O cpuMonitor; start { setDescription("HOTSPOT COMPILATION CPU %"); setToolTip("Percentage is per core"); cpuMonitor = runDependent(#1001405); // TODO: share with other modules ownTimer(doEvery(2.0, r actualUpdate)); } void actualUpdate { setValue(iceil((double) get(cpuMonitor, 'compilationPercentage)) + " %"); } }