REST Resource: projects.groups

Resource: ErrorGroup

Description of a group of similar error events.

JSON representation
{
  "name": string,
  "groupId": string,
  "trackingIssues": [
    {
      object (TrackingIssue)
    }
  ],
  "resolutionStatus": enum (ResolutionStatus)
}
Fields
name

string

The group resource name. Example:

projects/my-project-123/groups/CNSgkpnppqKCUw

groupId

string

Group IDs are unique for a given project. If the same kind of error occurs in different service contexts, it will receive the same group ID.

trackingIssues[]

object (TrackingIssue)

Associated tracking issues.

resolutionStatus

enum (ResolutionStatus)

Error group's resolution status.

An unspecified resolution status will be interpreted as OPEN

TrackingIssue

Information related to tracking the progress on resolving the error.

JSON representation
{
  "url": string
}
Fields
url

string

A URL pointing to a related entry in an issue tracking system. Example: https://github.com/user/project/issues/4

ResolutionStatus

Resolution status of an error group.

Enums
RESOLUTION_STATUS_UNSPECIFIED Status is unknown. When left unspecified in requests, it is treated like OPEN.
OPEN The error group is not being addressed. This is the default for new groups. It is also used for errors re-occurring after marked RESOLVED.
ACKNOWLEDGED Error Group manually acknowledged, it can have an issue link attached.
RESOLVED Error Group manually resolved, more events for this group are not expected to occur.
MUTED The error group is muted and excluded by default on group stats requests.

Methods

get

Get the specified group.

update

Replace the data for the specified group.