atop
atop copied to clipboard
System and process monitor for Linux
Eg with some CPUs offline (note cpu0 is always online): ```` # ls /sys/devices/system/cpu/cpu*/online | sort -V | xargs -l1 -t cat cat /sys/devices/system/cpu/cpu1/online 0 cat /sys/devices/system/cpu/cpu2/online 0 cat /sys/devices/system/cpu/cpu3/online...
According to [1], Linux kernel has reported separate components (anon, file, and shmem) for PSS in smaps_rollup. This helps understand and tune the memory manager behavior in consumer devices. Thus...
This patch collects and displays the current number of opened file descriptors for each process to monitor if fd leaks. As each thread has the same fds with its process,...
The network devices, like eth2, are settled in another network namespace via `ip netns add` in some scenarios in the production environment. In this case, we have to switch to...
Hi @Atoptool The main changes in this PR: * Support /proc/mzoneinfo collection
I have a question regarding `atopgpud`. We recently tried to install atop (2.7.1, with atopgpud deemon) on our Centos 7 machine (Python 3.6.8), and we were getting the `Python module...
Hello, Netatop 3.1 module crashes my server once in several days, with General Protection fault. Take a look at the most recent crash log obtained with netconsole. It crashes in...
Being able to sort on the `SWAPSZ` column would be useful. Being able to sort on any column would be more scalable, but it doesn't seem like that'll happen: https://github.com/Atoptool/atop/issues/169
GCC-14 enabled errors on long-deprecated C features, like functions declared without prototype. Clang did it long time ago netatop fails under this category: ``` /var/tmp/portage/sys-process/atop-2.10.0-r1/work/netatop-3.1/module/netatop.c:1041:11: error: a function declaration without...