blob: 33864f19fde02c962dc7b2b8f21e7f14ca80d3ea [file] [log] [blame]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="clouderrorreporting_v1beta1.html">Error Reporting API</a> . <a href="clouderrorreporting_v1beta1.projects.html">projects</a> . <a href="clouderrorreporting_v1beta1.projects.events.html">events</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#list">list(projectName, pageToken=None, timeRange_period=None, pageSize=None, serviceFilter_resourceType=None, groupId=None, serviceFilter_version=None, serviceFilter_service=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists the specified events.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#report">report(projectName, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Report an individual error event.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="list">list(projectName, pageToken=None, timeRange_period=None, pageSize=None, serviceFilter_resourceType=None, groupId=None, serviceFilter_version=None, serviceFilter_service=None, x__xgafv=None)</code>
<pre>Lists the specified events.
Args:
projectName: string, Required. The resource name of the Google Cloud Platform project. Written
as `projects/{projectID}`, where `{projectID}` is the
[Google Cloud Platform project
ID](https://support.google.com/cloud/answer/6158840).
Example: `projects/my-project-123`. (required)
pageToken: string, Optional. A `next_page_token` provided by a previous response.
timeRange_period: string, Restricts the query to the specified time range.
pageSize: integer, Optional. The maximum number of results to return per response.
serviceFilter_resourceType: string, Optional. The exact value to match against
[`ServiceContext.resource_type`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type).
groupId: string, Required. The group for which events shall be returned.
serviceFilter_version: string, Optional. The exact value to match against
[`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version).
serviceFilter_service: string, Optional. The exact value to match against
[`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service).
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Contains a set of requested error events.
&quot;nextPageToken&quot;: &quot;A String&quot;, # If non-empty, more results are available.
# Pass this token, along with the same query parameters as the first
# request, to view the next page of results.
&quot;errorEvents&quot;: [ # The error events which match the given request.
{ # An error event which is returned by the Error Reporting system.
&quot;eventTime&quot;: &quot;A String&quot;, # Time when the event occurred as provided in the error report.
# If the report did not contain a timestamp, the time the error was received
# by the Error Reporting system is used.
&quot;message&quot;: &quot;A String&quot;, # The stack trace that was reported or logged by the service.
&quot;context&quot;: { # A description of the context in which an error occurred. # Data about the context in which the error occurred.
# This data should be provided by the application when reporting an error,
# unless the
# error report has been generated automatically from Google App Engine logs.
&quot;httpRequest&quot;: { # HTTP request data that is related to a reported error. # The HTTP request which was processed when the error was
# triggered.
# This data should be provided by the application when reporting an error,
# unless the
# error report has been generated automatically from Google App Engine logs.
&quot;responseStatusCode&quot;: 42, # The HTTP response status code for the request.
&quot;remoteIp&quot;: &quot;A String&quot;, # The IP address from which the request originated.
# This can be IPv4, IPv6, or a token which is derived from the
# IP address, depending on the data that has been provided
# in the error report.
&quot;referrer&quot;: &quot;A String&quot;, # The referrer information that is provided with the request.
&quot;method&quot;: &quot;A String&quot;, # The type of HTTP request, such as `GET`, `POST`, etc.
&quot;url&quot;: &quot;A String&quot;, # The URL of the request.
&quot;userAgent&quot;: &quot;A String&quot;, # The user agent information that is provided with the request.
},
&quot;sourceReferences&quot;: [ # Source code that was used to build the executable which has
# caused the given error message.
{ # A reference to a particular snapshot of the source tree used to build and
# deploy an application.
&quot;revisionId&quot;: &quot;A String&quot;, # The canonical and persistent identifier of the deployed revision.
# Example (git): &quot;0035781c50ec7aa23385dc841529ce8a4b70db1b&quot;
&quot;repository&quot;: &quot;A String&quot;, # Optional. A URI string identifying the repository.
# Example: &quot;https://github.com/GoogleCloudPlatform/kubernetes.git&quot;
},
],
&quot;reportLocation&quot;: { # Indicates a location in the source code of the service for which errors are # The location in the source code where the decision was made to
# report the error, usually the place where it was logged.
# For a logged exception this would be the source line where the
# exception is logged, usually close to the place where it was
# caught.
# reported. `functionName` must be provided by the application when reporting
# an error, unless the error report contains a `message` with a supported
# exception stack trace. All fields are optional for the later case.
&quot;functionName&quot;: &quot;A String&quot;, # Human-readable name of a function or method.
# The value can include optional context like the class or package name.
# For example, `my.package.MyClass.method` in case of Java.
&quot;lineNumber&quot;: 42, # 1-based. 0 indicates that the line number is unknown.
&quot;filePath&quot;: &quot;A String&quot;, # The source code filename, which can include a truncated relative
# path, or a full path from a production machine.
},
&quot;user&quot;: &quot;A String&quot;, # The user who caused or was affected by the crash.
# This can be a user ID, an email address, or an arbitrary token that
# uniquely identifies the user.
# When sending an error report, leave this field empty if the user was not
# logged in. In this case the
# Error Reporting system will use other data, such as remote IP address, to
# distinguish affected users. See `affected_users_count` in
# `ErrorGroupStats`.
},
&quot;serviceContext&quot;: { # Describes a running service that sends errors. # The `ServiceContext` for which this error was reported.
# Its version changes over time and multiple versions can run in parallel.
&quot;resourceType&quot;: &quot;A String&quot;, # Type of the MonitoredResource. List of possible values:
# https://cloud.google.com/monitoring/api/resources
#
# Value is set automatically for incoming errors and must not be set when
# reporting errors.
&quot;version&quot;: &quot;A String&quot;, # Represents the source code version that the developer provided,
# which could represent a version label or a Git SHA-1 hash, for example.
# For App Engine standard environment, the version is set to the version of
# the app.
&quot;service&quot;: &quot;A String&quot;, # An identifier of the service, such as the name of the
# executable, job, or Google App Engine service name. This field is expected
# to have a low number of values that are relatively stable over time, as
# opposed to `version`, which can be changed whenever new code is deployed.
#
# Contains the service name for error reports extracted from Google
# App Engine logs or `default` if the App Engine default service is used.
},
},
],
&quot;timeRangeBegin&quot;: &quot;A String&quot;, # The timestamp specifies the start time to which the request was restricted.
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next(previous_request, previous_response)</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
<div class="method">
<code class="details" id="report">report(projectName, body=None, x__xgafv=None)</code>
<pre>Report an individual error event.
This endpoint accepts **either** an OAuth token,
**or** an [API key](https://support.google.com/cloud/answer/6158862)
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`
Args:
projectName: string, Required. The resource name of the Google Cloud Platform project. Written
as `projects/{projectId}`, where `{projectId}` is the
[Google Cloud Platform project
ID](https://support.google.com/cloud/answer/6158840).
Example: // `projects/my-project-123`. (required)
body: object, The request body.
The object takes the form of:
{ # An error event which is reported to the Error Reporting system.
&quot;message&quot;: &quot;A String&quot;, # Required. The error message.
# If no `context.reportLocation` is provided, the message must contain a
# header (typically consisting of the exception type name and an error
# message) and an exception stack trace in one of the supported programming
# languages and formats.
# Supported languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go.
# Supported stack trace formats are:
#
# * **Java**: Must be the return value of
# [`Throwable.printStackTrace()`](https://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29).
# * **Python**: Must be the return value of
# [`traceback.format_exc()`](https://docs.python.org/2/library/traceback.html#traceback.format_exc).
# * **JavaScript**: Must be the value of
# [`error.stack`](https://github.com/v8/v8/wiki/Stack-Trace-API) as returned
# by V8.
# * **Ruby**: Must contain frames returned by
# [`Exception.backtrace`](https://ruby-doc.org/core-2.2.0/Exception.html#method-i-backtrace).
# * **C#**: Must be the return value of
# [`Exception.ToString()`](https://msdn.microsoft.com/en-us/library/system.exception.tostring.aspx).
# * **PHP**: Must start with `PHP (Notice|Parse error|Fatal error|Warning)`
# and contain the result of
# [`(string)$exception`](http://php.net/manual/en/exception.tostring.php).
# * **Go**: Must be the return value of
# [`runtime.Stack()`](https://golang.org/pkg/runtime/debug/#Stack).
&quot;context&quot;: { # A description of the context in which an error occurred. # Optional. A description of the context in which the error occurred.
# This data should be provided by the application when reporting an error,
# unless the
# error report has been generated automatically from Google App Engine logs.
&quot;httpRequest&quot;: { # HTTP request data that is related to a reported error. # The HTTP request which was processed when the error was
# triggered.
# This data should be provided by the application when reporting an error,
# unless the
# error report has been generated automatically from Google App Engine logs.
&quot;responseStatusCode&quot;: 42, # The HTTP response status code for the request.
&quot;remoteIp&quot;: &quot;A String&quot;, # The IP address from which the request originated.
# This can be IPv4, IPv6, or a token which is derived from the
# IP address, depending on the data that has been provided
# in the error report.
&quot;referrer&quot;: &quot;A String&quot;, # The referrer information that is provided with the request.
&quot;method&quot;: &quot;A String&quot;, # The type of HTTP request, such as `GET`, `POST`, etc.
&quot;url&quot;: &quot;A String&quot;, # The URL of the request.
&quot;userAgent&quot;: &quot;A String&quot;, # The user agent information that is provided with the request.
},
&quot;sourceReferences&quot;: [ # Source code that was used to build the executable which has
# caused the given error message.
{ # A reference to a particular snapshot of the source tree used to build and
# deploy an application.
&quot;revisionId&quot;: &quot;A String&quot;, # The canonical and persistent identifier of the deployed revision.
# Example (git): &quot;0035781c50ec7aa23385dc841529ce8a4b70db1b&quot;
&quot;repository&quot;: &quot;A String&quot;, # Optional. A URI string identifying the repository.
# Example: &quot;https://github.com/GoogleCloudPlatform/kubernetes.git&quot;
},
],
&quot;reportLocation&quot;: { # Indicates a location in the source code of the service for which errors are # The location in the source code where the decision was made to
# report the error, usually the place where it was logged.
# For a logged exception this would be the source line where the
# exception is logged, usually close to the place where it was
# caught.
# reported. `functionName` must be provided by the application when reporting
# an error, unless the error report contains a `message` with a supported
# exception stack trace. All fields are optional for the later case.
&quot;functionName&quot;: &quot;A String&quot;, # Human-readable name of a function or method.
# The value can include optional context like the class or package name.
# For example, `my.package.MyClass.method` in case of Java.
&quot;lineNumber&quot;: 42, # 1-based. 0 indicates that the line number is unknown.
&quot;filePath&quot;: &quot;A String&quot;, # The source code filename, which can include a truncated relative
# path, or a full path from a production machine.
},
&quot;user&quot;: &quot;A String&quot;, # The user who caused or was affected by the crash.
# This can be a user ID, an email address, or an arbitrary token that
# uniquely identifies the user.
# When sending an error report, leave this field empty if the user was not
# logged in. In this case the
# Error Reporting system will use other data, such as remote IP address, to
# distinguish affected users. See `affected_users_count` in
# `ErrorGroupStats`.
},
&quot;eventTime&quot;: &quot;A String&quot;, # Optional. Time when the event occurred.
# If not provided, the time when the event was received by the
# Error Reporting system will be used.
&quot;serviceContext&quot;: { # Describes a running service that sends errors. # Required. The service context in which this error has occurred.
# Its version changes over time and multiple versions can run in parallel.
&quot;resourceType&quot;: &quot;A String&quot;, # Type of the MonitoredResource. List of possible values:
# https://cloud.google.com/monitoring/api/resources
#
# Value is set automatically for incoming errors and must not be set when
# reporting errors.
&quot;version&quot;: &quot;A String&quot;, # Represents the source code version that the developer provided,
# which could represent a version label or a Git SHA-1 hash, for example.
# For App Engine standard environment, the version is set to the version of
# the app.
&quot;service&quot;: &quot;A String&quot;, # An identifier of the service, such as the name of the
# executable, job, or Google App Engine service name. This field is expected
# to have a low number of values that are relatively stable over time, as
# opposed to `version`, which can be changed whenever new code is deployed.
#
# Contains the service name for error reports extracted from Google
# App Engine logs or `default` if the App Engine default service is used.
},
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response for reporting an individual error event.
# Data may be added to this message in the future.
}</pre>
</div>
</body></html>