[ CS: PROC_&_MEM ]

CPU USAGE
Core 0: [|||||||||| ] 65%
Core 1: [|||||||||||| ] 82%
MEMORY (RAM)
Used: 6.7GB / 16GB (42%)
Swap: 0.3GB / 2GB (15%)
SYSTEM PROCESS TREE (pstree)
systemd(1)
โ”œโ”€sshd(842)
โ””โ”€sshd(2143)โ”€โ”€โ”€bash(2145)โ”€โ”€โ”€top(2410)
โ”œโ”€nginx(451)
โ”œโ”€worker(452)
โ””โ”€worker(453)
โ””โ”€uv(1502)โ”€โ”€โ”€python(1503)
# Purpose: Memory monitoring
# Description: Reports free and used physical and swap memory in the system
user@linux:~$ free -h
              total        used        free      shared  buff/cache   available
Mem:          15Gi       6.7Gi       2.1Gi       1.2Gi       6.2Gi       7.1Gi
Swap:        2.0Gi       300Mi       1.7Gi
# Purpose: Process investigation
# Description: Searches for active nginx processes across the system
user@linux:~$ ps aux | grep nginx
root       451  0.0  0.1  14224  2540 ?        Ss   Feb20   0:00 nginx: master process /usr/sbin/nginx
www-data   452  0.0  0.2  14580  4120 ?        S    Feb20   0:05 nginx: worker process
# Purpose: Process termination
# Description: Forcibly sends the SIGKILL signal to stop a specific process ID
user@linux:~$ kill -9 1503
user@linux:~$ _
< BACK_TO_HOME