We run multiple SUN Ray Servers and from time to time, some processes tend to grow large over time.
I'm new to zabbix and i'm wondering if it's possible to flag processes larger than x pages.
EG: The ps/nawk command shows the process greater than 300,000k
I'm new to zabbix and i'm wondering if it's possible to flag processes larger than x pages.
EG: The ps/nawk command shows the process greater than 300,000k
ps -aef -o vsz,pid,user,args| nawk 'BEGIN {}{if ($1 > 300000) {printf ("%s %s %s %s\n",$1,$2,$3,$4); }}END{}'
VSZ PID USER COMMAND
314744 3981 kfr /usr/local/firefox/firefox-bin
VSZ PID USER COMMAND
314744 3981 kfr /usr/local/firefox/firefox-bin
Comment