Apache Historical Journal

Does anyone know if it is possible to identify the number of connections that the server has had over a given period of time?

Are there any logs that store such information?

thank

+5
source share
2 answers

You can use "grep" to get all the lines from access.log that contain a specific date / time (or range) (and other filter criteria) and pass it to "wc -l" to calculate the number of lines, which will give you the number of requests.

+6
source

, access.log? linux /var/log/apach2/access.log. , yur httpd.conf apache.

+3

All Articles