Deletes all error events of a given project.
Type: string
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string
Get the specified group.
Type: string
Type: string
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string
Lists the specified events.
Type: string
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Required. The group for which events shall be returned.
Type: string
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Optional. The exact value to match againstServiceContext.resource_type
.
Type: string
Optional. The exact value to match againstServiceContext.service
.
Type: string
Optional. The exact value to match againstServiceContext.version
.
Type: string
Restricts the query to the specified time range.
Type: string
Potential values: PERIOD_UNSPECIFIED, PERIOD_1_HOUR, PERIOD_6_HOURS, PERIOD_1_DAY, PERIOD_1_WEEK, PERIOD_30_DAYS
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string
Lists the specified groups.
Type: string
Optional. The alignment of the timed counts to be returned.
Default is ALIGNMENT_EQUAL_AT_END
.
Type: string
Potential values: ERROR_COUNT_ALIGNMENT_UNSPECIFIED, ALIGNMENT_EQUAL_ROUNDED, ALIGNMENT_EQUAL_AT_END
Optional. Time where the timed counts shall be aligned if rounded
alignment is chosen. Default is 00:00 UTC.
Type: string
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Optional. List all ErrorGroupStats with these IDs.
Type: array
[ "string" ]
Optional. The sort order in which the results are returned.
Default is COUNT_DESC
.
Type: string
Potential values: GROUP_ORDER_UNSPECIFIED, COUNT_DESC, LAST_SEEN_DESC, CREATED_DESC, AFFECTED_USERS_DESC
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Optional. The exact value to match againstServiceContext.resource_type
.
Type: string
Optional. The exact value to match againstServiceContext.service
.
Type: string
Optional. The exact value to match againstServiceContext.version
.
Type: string
Restricts the query to the specified time range.
Type: string
Potential values: PERIOD_UNSPECIFIED, PERIOD_1_HOUR, PERIOD_6_HOURS, PERIOD_1_DAY, PERIOD_1_WEEK, PERIOD_30_DAYS
Optional. The preferred duration for a single returned TimedCount
.
If not set, no timed counts are returned.
Type: string
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string
Report an individual error event.
This endpoint accepts either an OAuth token,
or an API key
for authentication. To use an API key, append it to the URL as the value of
a key
parameter. For example:
POST https://clouderrorreporting.googleapis.com/v1beta1/{projectName}/events:report?key=123ABC456
Type: string
An error event which is reported to the Error Reporting system.
Type: object
{
"eventTime" : "Optional. Time when the event occurred.\nIf not provided, the time when the event was received by the\nError Reporting system will be used.",
"context" : {
"sourceReferences" : [ {
"revisionId" : "The canonical and persistent identifier of the deployed revision.\nExample (git): \"0035781c50ec7aa23385dc841529ce8a4b70db1b\"",
"repository" : "Optional. A URI string identifying the repository.\nExample: \"https://github.com/GoogleCloudPlatform/kubernetes.git\""
} ],
"httpRequest" : {
"responseStatusCode" : "The HTTP response status code for the request.",
"referrer" : "The referrer information that is provided with the request.",
"remoteIp" : "The IP address from which the request originated.\nThis can be IPv4, IPv6, or a token which is derived from the\nIP address, depending on the data that has been provided\nin the error report.",
"method" : "The type of HTTP request, such as `GET`, `POST`, etc.",
"userAgent" : "The user agent information that is provided with the request.",
"url" : "The URL of the request."
},
"user" : "The user who caused or was affected by the crash.\nThis can be a user ID, an email address, or an arbitrary token that\nuniquely identifies the user.\nWhen sending an error report, leave this field empty if the user was not\nlogged in. In this case the\nError Reporting system will use other data, such as remote IP address, to\ndistinguish affected users. See `affected_users_count` in\n`ErrorGroupStats`.",
"reportLocation" : {
"functionName" : "Human-readable name of a function or method.\nThe value can include optional context like the class or package name.\nFor example, `my.package.MyClass.method` in case of Java.",
"filePath" : "The source code filename, which can include a truncated relative\npath, or a full path from a production machine.",
"lineNumber" : "1-based. 0 indicates that the line number is unknown."
}
},
"message" : "Required. The error message.\nIf no `context.reportLocation` is provided, the message must contain a\nheader (typically consisting of the exception type name and an error\nmessage) and an exception stack trace in one of the supported programming\nlanguages and formats.\nSupported languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go.\nSupported stack trace formats are:\n\n* **Java**: Must be the return value of\n[`Throwable.printStackTrace()`](https://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29).\n* **Python**: Must be the return value of\n[`traceback.format_exc()`](https://docs.python.org/2/library/traceback.html#traceback.format_exc).\n* **JavaScript**: Must be the value of\n[`error.stack`](https://github.com/v8/v8/wiki/Stack-Trace-API) as returned\nby V8.\n* **Ruby**: Must contain frames returned by\n[`Exception.backtrace`](https://ruby-doc.org/core-2.2.0/Exception.html#method-i-backtrace).\n* **C#**: Must be the return value of\n[`Exception.ToString()`](https://msdn.microsoft.com/en-us/library/system.exception.tostring.aspx).\n* **PHP**: Must start with `PHP (Notice|Parse error|Fatal error|Warning)`\nand contain the result of\n[`(string)$exception`](http://php.net/manual/en/exception.tostring.php).\n* **Go**: Must be the return value of\n[`runtime.Stack()`](https://golang.org/pkg/runtime/debug/#Stack).",
"serviceContext" : {
"service" : "An identifier of the service, such as the name of the\nexecutable, job, or Google App Engine service name. This field is expected\nto have a low number of values that are relatively stable over time, as\nopposed to `version`, which can be changed whenever new code is deployed.\n\nContains the service name for error reports extracted from Google\nApp Engine logs or `default` if the App Engine default service is used.",
"version" : "Represents the source code version that the developer provided,\nwhich could represent a version label or a Git SHA-1 hash, for example.\nFor App Engine standard environment, the version is set to the version of\nthe app.",
"resourceType" : "Type of the MonitoredResource. List of possible values:\nhttps://cloud.google.com/monitoring/api/resources\n\nValue is set automatically for incoming errors and must not be set when\nreporting errors."
}
}
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string
Replace the data for the specified group.
Fails if the group does not exist.
Type: string
Type: string
Description of a group of similar error events.
Type: object
{
"groupId" : "Group IDs are unique for a given project. If the same kind of error\noccurs in different service contexts, it will receive the same group ID.",
"name" : "The group resource name.\nExample: projects/my-project-123/groups/CNSgkpnppqKCUw",
"trackingIssues" : [ {
"url" : "A URL pointing to a related entry in an issue tracking system.\nExample: https://github.com/user/project/issues/4"
} ]
}
Data format for response.
Type: string
Potential values: json, media, proto
JSONP
Type: string
Selector specifying which fields to include in a partial response.
Type: string
Returns response with indentations and line breaks.
Type: boolean
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
Type: string
Legacy upload protocol for media (e.g. "media", "multipart").
Type: string
Upload protocol for media (e.g. "raw", "multipart").
Type: string