How to get “requests per second” for Apache in Linux?
In Windows for ASP, you can get it perfmon, but... How to get "requests per second" for Apache in Linux? In realtime, or can you use mod_status ? And apparently, there is a version of top for apache ... Adam Franco Here is a short bash script I made up to sample the request rate (based on dicroce's suggestion of using wc -l on the log file). #!/bin/sh ############################################################################## # This script will monitor the number of lines in a log file to determine the # number of requests per second. # # Example usage: # reqs-per-sec -f 15 -i /var/www/http