We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b07e72 commit 9f3308eCopy full SHA for 9f3308e
index.html
@@ -294,6 +294,18 @@
294
295
async function runTest(cx)
296
{
297
+ var processCount = 0;
298
+ function handleProcessCreated()
299
+ {
300
+ processCount++;
301
+ plausible(`Process started: ${processCount}`);
302
+ if(processCount == 5)
303
304
+ // Make sure no further event is reported
305
+ cx.unregisterCallback("processCreated", handleProcessCreated);
306
+ }
307
308
+ cx.registerCallback("processCreated", handleProcessCreated);
309
cx.registerCallback("cpuActivity", cpuCallback);
310
cx.registerCallback("diskActivity", hddCallback);
311
registerNetworkLogin(cx, networkInterface);
0 commit comments