We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PsUtil 4.0.0 change log: http://grodola.blogspot.fr/2016/02/psutil-4-real-process-memory-and-environ.html
The text was updated successfully, but these errors were encountered:
Implement "Real" process memory info: USS and PSS (MEM plugin)
replace process MEM% column by USS / PSS ? => Not possible because memory_full_info need root right for system processes
>>> psutil.Process(1).memory_full_info() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/psutil/__init__.py", line 997, in memory_full_info return self._proc.memory_full_info() File "/usr/local/lib/python2.7/dist-packages/psutil/_pslinux.py", line 877, in wrapper raise AccessDenied(self.pid, self._name) psutil.AccessDenied: psutil.AccessDenied (pid=1)
Add new columns ? => Looks great but add to catch the psutil.AccessDenied error for system processes
Other thinks:
PsUtil 4.0.0 >>> import psutil >>> psutil.Process().memory_info() pmem(rss=9428992, vms=51527680, shared=3870720, text=2867200, lib=0, data=5373952, dirty=0) >>> psutil.Process().memory_info_ex() pmem(rss=9437184, vms=51527680, shared=3878912, text=2867200, lib=0, data=5373952, dirty=0) >>> psutil.Process().memory_full_info() pfullmem(rss=9441280, vms=51527680, shared=3883008, text=2867200, lib=0, data=5373952, dirty=0, uss=5603328, pss=6246400, swap=0)
Sorry, something went wrong.
No branches or pull requests
PsUtil 4.0.0 change log: http://grodola.blogspot.fr/2016/02/psutil-4-real-process-memory-and-environ.html
The text was updated successfully, but these errors were encountered: