To Find the request count of a site using access log
To Find the request count of a site using access log
S1: cd /var/log/apache2#
S2: ls -la | grep site name or log file
s3 : grep "date/month" log file | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c
grep "19/12" log file | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c
grep "23/Dec/2017:10" vm1-emedhr-access.log | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":"$3}' | sort -nk1 -nk2 | uniq -c | awk '{ if ($1 > 10) print $0}'
grep "12/Mar" vm1-800aster.com-access.log | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c
Comments
Post a Comment