2a809e7fb1
Atop is an ASCII full-screen performance monitor for Linux. - install only the basic functionality (command line tool atop). - add patch to fix musl build by removing unused include of termio.h. Patch was accepted upstream. Support for extra functionality can be added by follow-up patches: - init scripts (sysv and systemd) to autostart logging the system activity. - process accounting (needs counterpart enabled in the kernel). Signed-off-by: Ricardo Martincoski <ricardo.martincoski@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
765 B
Plaintext
19 lines
765 B
Plaintext
config BR2_PACKAGE_ATOP
|
|
bool "atop"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Atop is an ASCII full-screen performance monitor for Linux
|
|
that is capable of reporting the activity of all processes
|
|
(even if processes have finished during the interval), daily
|
|
logging of system and process activity for long-term analysis,
|
|
highlighting overloaded system resources by using colors, etc.
|
|
At regular intervals, it shows system-level activity related
|
|
to the CPU, memory, swap, disks (including LVM) and network
|
|
layers, and for every process (and thread) it shows e.g. the
|
|
CPU utilization, memory growth, disk utilization, priority,
|
|
username, state, and exit code.
|
|
|
|
http://www.atoptool.nl
|