REST Resource: vitals.errors.reports

Resource: ErrorReport

An error report received for an app.

There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport.

Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.

JSON representation
{
  "name": string,
  "type": enum (ErrorType),
  "reportText": string,
  "issue": string,
  "eventTime": string,
  "deviceModel": {
    object (DeviceModelSummary)
  },
  "osVersion": {
    object (OsVersion)
  },
  "appVersion": {
    object (AppVersion)
  },
  "vcsInformation": string
}
Fields
name

string

The resource name of the report.

Format: apps/{app}/{report}

type

enum (ErrorType)

Type of the error for which this report was generated.

reportText

string

Textual representation of the error report.

These textual reports are produced by the platform. The reports are then sanitized and filtered to remove any potentially sensitive information.

Although their format is fairly stable, they are not entirely meant for machine consumption and we cannot guarantee that there won't be subtle changes to the formatting that may break systems trying to parse information out of the reports.

issue

string

The issue this report was associated with.

Please note: this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to a different issue.

eventTime

string (Timestamp format)

Start of the hour during which the latest event in this error report occurred.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

deviceModel

object (DeviceModelSummary)

A device model on which an event in this error report occurred on.

osVersion

object (OsVersion)

The OS version on which an event in this error report occurred on.

appVersion

object (AppVersion)

The app version on which an event in this error report occurred on.

vcsInformation

string

Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.

DeviceModelSummary

Summary of a device

JSON representation
{
  "deviceId": {
    object (DeviceId)
  },
  "marketingName": string,
  "deviceUri": string
}
Fields
deviceId

object (DeviceId)

Identifier of the device.

marketingName

string

Display name of the device.

deviceUri

string

Link to the device in Play Device Catalog.

DeviceId

Identifier of a device.

JSON representation
{
  "buildBrand": string,
  "buildDevice": string
}
Fields
buildBrand

string

Value of Build.BRAND.

buildDevice

string

Value of Build.DEVICE.

Methods

Searches all error reports received for an app.