Method: customers.reports.countChromeCrashEvents

  • The countChromeCrashEvents method is used to get a count of Chrome crash events.

  • The request uses a GET HTTP method with a URL that includes the customer ID as a path parameter.

  • Optional query parameters include orgUnitId, filter, and orderBy to refine the results.

  • The request body must be empty.

  • The response body contains a list of CrashEventCount objects, each providing the count of crash events for a specific date and browser version.

Get a count of Chrome crash events.

HTTP request

GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/reports:countChromeCrashEvents

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
customer

string

Customer ID.

Query parameters

Parameters
orgUnitId

string

If specified, only count the number of crash events of the devices in this organizational unit.

filter

string

Query string to filter results, AND-separated fields in EBNF syntax. Supported filter fields: * major_browser_version * minor_browser_version * browserChannel * device_platform * past_number_days Example: major_browser_version = 'M115' AND past_number_days = '28'.

orderBy

string

Field used to order results.

Supported order by fields:

  • browserVersion
  • count
  • date

Request body

The request body must be empty.

Response body

Response contains a list of CrashEventCountByVersionPerDay which count the chrome crash at the certain date.

If successful, the response body contains data with the following structure:

JSON representation
{
  "crashEventCounts": [
    {
      object (CrashEventCount)
    }
  ]
}
Fields
crashEventCounts[]

object (CrashEventCount)

Crash event counts grouped by date and browser version.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/chrome.management.reports.readonly

CrashEventCount

The count of the Chrome crash events at the date.

JSON representation
{
  "date": {
    object (Date)
  },
  "browserVersion": string,
  "count": string
}
Fields
date

object (Date)

Date of the crash event.

browserVersion

string

Browser version this is counting.

count

string (int64 format)

Total count of crash events.