When I use ps -o pid,rss -p 1 , I see the following:
PID RSS 1 784
But when I request rss with psutil , I get a different value:
>>> p = psutil.Process(1) >>> print p.get_memory_info().rss 802816
Is it possible that psutil using a different block? I cannot find any related information in the documentation .
source share