Mobile app version of vmapp.org
Login or Join
Courtney195

: How to view history more than 30 days in the past? It seems that in Google Webmaster Tools I can only see about a month and a half of crawler history for my website. My site has been verified

@Courtney195

Posted in: #Google #GoogleSearchConsole

It seems that in Google Webmaster Tools I can only see about a month and a half of crawler history for my website.

My site has been verified for several months now. Analytics has a broader history than this. Is there something I'm doing wrong is it that just how Webmaster Tools is?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Courtney195

2 Comments

Sorted by latest first Latest Oldest Best

 

@XinRu657

The crawler report provided by Google Webmaster Tools does not provide data points beyond the past 90 days and it would be fairly difficult to maintain accurate records given the crawl rate data that is made available.

The data is actually embedded in the chart image URL's chd parameter using the simple encoding scheme described in the Data Format document for the Google Charts API.

It is possible to extract the data (included JS functions culled from Google's documentation) but the data is normalized and, without the context of the high and low crawl rate figures, it wouldn't be particularly useful for tracking crawl rate over time.

/**
* number encoding map
*/
var SIMPLE_MAP='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
/**
* simpleDecoding function from
* URL: code.google.com/apis/chart/image/docs/data_formats.html */
function simpleDecoding(val) {
if (val.length != 1 || val == "_") {
return "";
}
var decodedVal = SIMPLE_MAP.indexOf(val.charAt(0));
if (decodedVal < 0) {
alert("Invalid decoding character.");
return "";
}
return decodedVal;
}
/**
* ... and decode a whole string
*/
function simpleDecode(val) {
var output = '';
for ( i = 0; i < val.length; i++ ) {
output += " "+simpleDecoding(val.charAt(i));
}
return output;
}

10% popularity Vote Up Vote Down


 

@Shakeerah822

Unfortunately this is just how Webmaster Tools is. The only way I know to preserve historical crawl stats information is to take screenshots every now and then and compare your images.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme