#process-memory #memory #rss #measurement #resident

app max_rss

A small utility to measure resident set size (rss) of a process

8 unstable releases (3 breaking)

0.4.1 Jan 18, 2024
0.4.0 Jan 17, 2024
0.3.3 Jan 17, 2024
0.2.1 Jan 16, 2024
0.1.0 Jan 15, 2024

#1186 in Command line utilities

Download history 23/week @ 2024-01-14 22/week @ 2024-02-25 58/week @ 2024-03-31

58 downloads per month

GPL-3.0-only

23KB
384 lines

max_rss

A small utility to measure resident set size (rss) of a process.

I created this because the I wanted to track the memory usage of programs in https://github.com/acheronfail/count, but the max_rss value from Linux's getrusage is inaccurate.

How does it work?

It uses Linux's ptrace api (man 2 ptrace) and tracks when the process forks, clones or exits, and sums up the Resident Set Size from each process where appropriate.

If you go through various Linux man pages, you'll discover that the max_rss field from getrusage isn't accurate, and also that man 5 proc mentions its rss field and some others are inaccurate. It recommends reading /proc/$PID/smaps instead.

Hence the need for this program. Here are also some other people I've found encountering the same thing:

Dependencies

~2.5MB
~55K SLoC