-
-
Notifications
You must be signed in to change notification settings - Fork 907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aggregate RAM usage by parent process #2296
base: master
Are you sure you want to change the base?
Conversation
hi. Thanks for your contribution, at first look it looks fine. But I will need some time to check how it works and if all cases are covered. Will back with feedback later. PS: please ping me in case I will not provide any feedback in 7 days |
c543880
to
593cc10
Compare
Code was displaying resident_size |
The previous screenshot is showing individual process usage. You need to look at the process hierarchy, eg. lldb-rpc-server is a child process of XCode so the memory usage is added together. Similarly, all the Safari processes are added together and grouped under Safari. |
Also I changed a line in Modules/RAM/popup.swift to correct an existing issue with the way GB is displayed (changed GB RAM to use powers of 2 rather than decimal). The screenshot seems to be missing this minor correction. |
Proposal to fix the following with a new Combine processes option:
Fixes: #2099
Fixes: #2162