log_hits
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
log_hits [2016/03/10 11:28] – luke7858 | log_hits [2024/05/23 07:26] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
=== Summarising custom logs === | === Summarising custom logs === | ||
+ | The following uses lsof to check all open log files by the web server, (access and error logs). | ||
+ | \\ | ||
+ | You will need to run this command first to save the logs files as LOGS: | ||
<sxh bash> | <sxh bash> | ||
LOGS=$(lsof -ln | awk '$4 ~ /[0-9]w/ && $5 ~ /REG/ {FILE[$NF]++}END{for (i in FILE) print i}') | LOGS=$(lsof -ln | awk '$4 ~ /[0-9]w/ && $5 ~ /REG/ {FILE[$NF]++}END{for (i in FILE) print i}') | ||
</ | </ | ||
\\ | \\ | ||
+ | === Browser and robot.txt check === | ||
+ | Now you can run the following command to receive an output: | ||
<sxh bash> | <sxh bash> | ||
for log in $(echo " | for log in $(echo " | ||
</ | </ | ||
- | |||
- | \\ | ||
\\ | \\ | ||
Example Output: | Example Output: | ||
Line 24: | Line 27: | ||
3458 Mozilla/5.0 (compatible; | 3458 Mozilla/5.0 (compatible; | ||
20386 Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/ | 20386 Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | === IP Check === | ||
+ | <sxh bash> | ||
+ | for log in $(echo " | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | Example output: | ||
+ | <sxh bash> | ||
+ | / | ||
+ | |||
+ | 2 180.76.15.157 "GET / | ||
+ | 2 66.249.78.114 "GET /robots.txt | ||
+ | 2 66.249.78.121 "POST / | ||
+ | 2 88.119.179.121 "GET / | ||
+ | 3 180.76.15.134 "GET / | ||
+ | 3 94.236.7.190 "GET / | ||
+ | 3 94.236.7.190 "GET /logrotate/ | ||
+ | 3 94.236.7.190 "POST / | ||
+ | 7 113.190.128.197 "POST /xmlrpc.php | ||
+ | 7 117.4.251.108 "POST /xmlrpc.php | ||
+ | </ | ||
+ | \\ | ||
+ | === Finding Crawlers === | ||
+ | **Note:** You will need to change date range and make sure you run the very first LOG command on this page first. | ||
+ | <sxh bash> | ||
+ | LC_ALL=C awk '/ | ||
+ | </ | ||
+ | \\ | ||
+ | === Accurate number of Apache requests per hour === | ||
+ | **Note:** Change date range and log file locationg | ||
+ | <sxh bash> | ||
+ | LC_ALL=C awk '/ | ||
+ | </ | ||
+ | \\ | ||
+ | === Log requests for Specific date/time range === | ||
+ | **Note:** Change date/time and log file location | ||
+ | <sxh bash> | ||
+ | LC_ALL=C awk -F \" '/ | ||
</ | </ |
log_hits.1457609321.txt.gz · Last modified: 2024/05/23 07:26 (external edit)