Reporting search referrals

Here is a quick awk command that will parse apache web logs and print a simple virtual host/date/referral csv report that only includes referrals from google, bing, or yahoo:

awk 'tolower($11) ~ "google|bing|yahoo" {print $2 "," $4 "," $11}' ${input_file} >> report.csv

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *