문제

if i have a web application running from a yaws web server, how would i count the number of hits from users to my site?

I have tried to use rudimentary methods of counting the number of lines in the .access file of my site found in the yaws logs like this:

$ cat PATH_TO_YAWS_LOGS/www.my_site.com.access | wc -l
Point me to a better way of finding out how many hits i have received sofar on my site running on top of yaws.

도움이 되었습니까?

해결책

You're lucky, Yaws uses the "Common Log Format" and thus any analytics software supporting Apache should do (for example "Webalizer", as mentioned there).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top