How can we calculate the hit count for the web Server?

Questions by VikasKapil

Showing Answers 1 - 3 of 3 Answers

shrikant

  • Jul 10th, 2013
 

You can count the number of hits by using below command to the access logs of your web server

netstat -an|grep access.log|wc -l

  Was this answer useful?  Yes

Prasad

  • Jul 11th, 2013
 

netstat -an | grep | wc -l

replace, with your actual webserver port number.

  Was this answer useful?  Yes

Madhu

  • May 14th, 2014
 

Code
  1. cat /opt/IBM/HTTPServer/logs/access_log_`date +%Y-%m-%d`  | wc –l



  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions