Mobile app version of vmapp.org
Login or Join
Connie744

: You may want to check out Apache Top. Or you can write your own script from the command line that just check the number of current connections on the port Apache is running on (usually

@Connie744

You may want to check out Apache Top.

Or you can write your own script from the command line that just check the number of current connections on the port Apache is running on (usually 80), for example:

netstat -plan | grep :80


Or, if you just want the number:

netstat -plan | grep :80 | wc -l


This could ideally be done through a cron (e.g., run every minute and check number of connections, average over time, etc.).

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Connie744

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme