fix(pidusage): prune history entries for PIDs not present in the requested set to avoid stale data and memory growth
This commit is contained in:
@@ -125,5 +125,12 @@ export async function getPidUsage(
|
||||
});
|
||||
}
|
||||
|
||||
// Prune history entries for PIDs no longer in the requested set
|
||||
for (const histPid of history.keys()) {
|
||||
if (!pids.includes(histPid)) {
|
||||
history.delete(histPid);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user