Si tienes Apache y Linux esta es una manera de medir las veces que te visita el robot de google ( Googlebot )al dia. Válido para google u otro.
Visitas diarias
Código:
cat access_log ¦ grep googlebot ¦ cut -d"[" -f 2 ¦ cut -d":" -f 1 ¦ uniq -c
Visitas mensuales
Código:
cat access_log ¦ grep googlebot ¦ cut -d"[" -f 2 ¦ cut -d"/" -f 2- ¦ cut -d":" -f 1 ¦ uniq -c
NOTA: todo en la misma línea.