Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does my process counting script give false positives?

I have the following bash script, that lists the current number of httpd processes, and if it is over 60, it should email me. This works 80% of the time but for some reason sometimes it emails me anyways when it is not over 60. Any ideas?

#!/bin/bash
lines=`ps -ef|grep httpd| wc -l`
if [ "$lines" -gt "60" ]
then
        mailx -s "Over 60 httpd processes" [email protected] < /dev/null
fi
like image 695
erotsppa Avatar asked Nov 22 '25 04:11

erotsppa


2 Answers

  1. There is a delay between checking and emailing. In that time, some httpd processes might finish, or start, or both. So, the number of processes can be different.
  2. You are including the grep process in the processes (most of the time, it could happen that the ps finishes before grep starts). An easy way to avoid that is to change your command to ps -ef | grep [h]ttpd. This will make sure that grep doesn't match grep [h]ttpd.
  3. On linux, you have pgrep, which might be better suited for your purposes.
  4. grep ... | wc -l can usually be replaced with grep -c ....
  5. If you want to limit the number of httpd requests, I am sure you can set it in apache configuration files.
like image 120
Alok Singhal Avatar answered Nov 23 '25 19:11

Alok Singhal


You've probably thought of this, but ...

At time t0, there are 61.

At time t1, when you read the email, there are 58.

Try including the value of $lines in the email and you'll see.

Or try using /proc/*/cmdline, it might be more reliable.

like image 39
bmargulies Avatar answered Nov 23 '25 19:11

bmargulies



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!