1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linuxdash_ynh.git synced 2024-09-03 19:36:07 +02:00
linuxdash_ynh/sources/server/modules/shell_files/ram_intensive_processes.sh

12 lines
No EOL
347 B
Bash
Executable file

#!/bin/bash
result=$(/bin/ps axo pid,user,pmem,rss,vsz,comm --sort -pmem,-rss,-vsz \
| head -n 15 \
| /usr/bin/awk 'NR>1 {print "{ \"pid\": " $1 \
", \"user\": \"" $2 \
"\", \"mem%\": " $3 \
", \"rss\": " $4 \
", \"vsz\": " $5 \
", \"cmd\": \"" $6 \
"\"},"}')
echo [ ${result%?} ]