How many apache requests do you have on your server?
make a file called : oozon
#!/bin/bash
#
#
echo `ps auxw | grep nobody | grep httpd | wc` | awk '{print " " $1 " apache requests"}'
drop it in
/usr/local/bin/
and every time you ssh to your machine as a user type
oozon and find out
You might have to change the grrep httpd or nobody depending on what apache runs under.
