summaryrefslogtreecommitdiff
path: root/src/charts.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2025-03-16 17:24:06 -0700
committerVito Caputo <vcaputo@pengaru.com>2025-03-16 17:24:06 -0700
commit4b64cfc452307fdff2f0d21d11d0393abef48139 (patch)
treebeb6cc7a9e3eb847095f73d6d05539df0941708f /src/charts.c
parent44041a498aaee2143cf5368c2207a5695ff9885c (diff)
libvmon: try follow children of threads too
Long ago an assumption was made that only the main thread having tid matching the pid would ever be the parent of children processes. This was an optimization done to avoid having to keep open the /proc/$pid/task/$tid/children node for every thread being monitored. For the longest time this seemed to be fine, as most things weren't forking from threaded programs, and if they were it didn't seem to produce descendants from threads other than for tid==pid. But that's not the case anymore. Running `go test` on things it's pretty apparent that go is cloning children from any old thread and those children are under /proc/$pid/tasks/$tid/children, and vmon is missing them from monitoring as a result. The bummer here is with large numbers of threads under monitoring, there's an added fd for every one of those threads. Each of those fds pins 4KiB in the kernel for the seq_file buffer, it adds up. Note this is only the libvmon side of things, there are other assumptions in charts.c resulting in awkward rendering of this new children-of-threads possibility. But other than some weirdness in the visual details, it's surprisingly mostly correct as-is.
Diffstat (limited to 'src/charts.c')
0 files changed, 0 insertions, 0 deletions
© All Rights Reserved