query(siteUrl, category=None, platform=None, latestCountsOnly=None)
Retrieves a time series of the number of URL crawl errors per error category and platform.
query(siteUrl, category=None, platform=None, latestCountsOnly=None)
Retrieves a time series of the number of URL crawl errors per error category and platform. Args: siteUrl: string, The site's URL, including protocol, for example 'http://www.example.com/' (required) category: string, The crawl error category, for example 'serverError'. If not specified, we return results for all categories. Allowed values authPermissions - manyToOneRedirect - notFollowed - notFound - other - roboted - serverError - soft404 - platform: string, The user agent type (platform) that made the request, for example 'web'. If not specified, we return results for all platforms. Allowed values mobile - smartphoneOnly - web - latestCountsOnly: boolean, If true, returns only the latest crawl error counts. Returns: An object of the form: { # A time series of the number of URL crawl errors per error category and platform. "countPerTypes": [ # The time series of the number of URL crawl errors for per error category and platform. { # Number of errors per day for a specific error type (defined by platform and category). "category": "A String", # The crawl error type. "platform": "A String", # Corresponding to the user agent that made the request. "entries": [ # The error count entries time series. { # An entry in a URL crawl errors time series. "count": "A String", # The error count at the given timestamp. "timestamp": "A String", # The time (well, date) when errors were detected, in RFC 3339 format. }, ], }, ], }