I want to know when google is crawling the site, preferably by sending myself an email.
Is there any way to do this that won’t adversely effect performance?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The user agent identifies itself as gsa-crawler/Googlebot depending if a Google appliance or Google. You could write some code (
Request.ServerVariables("HTTP_USER_AGENT")) that watches for that or analyses IIS log files.You might want to verify that the bot really is Google- that is something to watch out for.
I’d choose the Web app root if you need an email to sent out ASAP and the file analyse root if you can wait a little longer.