1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<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> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#list">list(projectName, groupId=None, pageSize=None, pageToken=None, serviceFilter_resourceType=None, serviceFilter_service=None, serviceFilter_version=None, timeRange_period=None, x__xgafv=None)</a></code></p> 82<p class="firstline">Lists the specified events.</p> 83<p class="toc_element"> 84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 85<p class="firstline">Retrieves the next page of results.</p> 86<p class="toc_element"> 87 <code><a href="#report">report(projectName, body=None, x__xgafv=None)</a></code></p> 88<p class="firstline">Report an individual error event and record the event to a log. 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` **Note:** [Error Reporting] (https://cloud.google.com/error-reporting) is a global service built on Cloud Logging and doesn't analyze logs stored in regional log buckets or logs routed to other Google Cloud projects. For more information, see [Using Error Reporting with regionalized logs] (https://cloud.google.com/error-reporting/docs/regionalization).</p> 89<h3>Method Details</h3> 90<div class="method"> 91 <code class="details" id="close">close()</code> 92 <pre>Close httplib2 connections.</pre> 93</div> 94 95<div class="method"> 96 <code class="details" id="list">list(projectName, groupId=None, pageSize=None, pageToken=None, serviceFilter_resourceType=None, serviceFilter_service=None, serviceFilter_version=None, timeRange_period=None, x__xgafv=None)</code> 97 <pre>Lists the specified events. 98 99Args: 100 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) 101 groupId: string, Required. The group for which events shall be returned. 102 pageSize: integer, Optional. The maximum number of results to return per response. 103 pageToken: string, Optional. A `next_page_token` provided by a previous response. 104 serviceFilter_resourceType: string, Optional. The exact value to match against [`ServiceContext.resource_type`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). 105 serviceFilter_service: string, Optional. The exact value to match against [`ServiceContext.service`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). 106 serviceFilter_version: string, Optional. The exact value to match against [`ServiceContext.version`](/error-reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). 107 timeRange_period: string, Restricts the query to the specified time range. 108 Allowed values 109 PERIOD_UNSPECIFIED - Do not use. 110 PERIOD_1_HOUR - Retrieve data for the last hour. Recommended minimum timed count duration: 1 min. 111 PERIOD_6_HOURS - Retrieve data for the last 6 hours. Recommended minimum timed count duration: 10 min. 112 PERIOD_1_DAY - Retrieve data for the last day. Recommended minimum timed count duration: 1 hour. 113 PERIOD_1_WEEK - Retrieve data for the last week. Recommended minimum timed count duration: 6 hours. 114 PERIOD_30_DAYS - Retrieve data for the last 30 days. Recommended minimum timed count duration: 1 day. 115 x__xgafv: string, V1 error format. 116 Allowed values 117 1 - v1 error format 118 2 - v2 error format 119 120Returns: 121 An object of the form: 122 123 { # Contains a set of requested error events. 124 "errorEvents": [ # The error events which match the given request. 125 { # An error event which is returned by the Error Reporting system. 126 "context": { # A description of the context in which an 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. # Data about the context in which the error occurred. 127 "httpRequest": { # HTTP request data that is related to a reported error. 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. # The HTTP request which was processed when the error was triggered. 128 "method": "A String", # The type of HTTP request, such as `GET`, `POST`, etc. 129 "referrer": "A String", # The referrer information that is provided with the request. 130 "remoteIp": "A String", # 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. 131 "responseStatusCode": 42, # The HTTP response status code for the request. 132 "url": "A String", # The URL of the request. 133 "userAgent": "A String", # The user agent information that is provided with the request. 134 }, 135 "reportLocation": { # Indicates a location in the source code of the service for which errors are 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. # 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. 136 "filePath": "A String", # The source code filename, which can include a truncated relative path, or a full path from a production machine. 137 "functionName": "A String", # 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. 138 "lineNumber": 42, # 1-based. 0 indicates that the line number is unknown. 139 }, 140 "sourceReferences": [ # Source code that was used to build the executable which has caused the given error message. 141 { # A reference to a particular snapshot of the source tree used to build and deploy an application. 142 "repository": "A String", # Optional. A URI string identifying the repository. Example: "https://github.com/GoogleCloudPlatform/kubernetes.git" 143 "revisionId": "A String", # The canonical and persistent identifier of the deployed revision. Example (git): "0035781c50ec7aa23385dc841529ce8a4b70db1b" 144 }, 145 ], 146 "user": "A String", # 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`. 147 }, 148 "eventTime": "A String", # 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. 149 "message": "A String", # The stack trace that was reported or logged by the service. 150 "serviceContext": { # Describes a running service that sends errors. Its version changes over time and multiple versions can run in parallel. # The `ServiceContext` for which this error was reported. 151 "resourceType": "A String", # 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. 152 "service": "A String", # 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. 153 "version": "A String", # 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. 154 }, 155 }, 156 ], 157 "nextPageToken": "A String", # 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. 158 "timeRangeBegin": "A String", # The timestamp specifies the start time to which the request was restricted. 159}</pre> 160</div> 161 162<div class="method"> 163 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 164 <pre>Retrieves the next page of results. 165 166Args: 167 previous_request: The request for the previous page. (required) 168 previous_response: The response from the request for the previous page. (required) 169 170Returns: 171 A request object that you can call 'execute()' on to request the next 172 page. Returns None if there are no more items in the collection. 173 </pre> 174</div> 175 176<div class="method"> 177 <code class="details" id="report">report(projectName, body=None, x__xgafv=None)</code> 178 <pre>Report an individual error event and record the event to a log. 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` **Note:** [Error Reporting] (https://cloud.google.com/error-reporting) is a global service built on Cloud Logging and doesn't analyze logs stored in regional log buckets or logs routed to other Google Cloud projects. For more information, see [Using Error Reporting with regionalized logs] (https://cloud.google.com/error-reporting/docs/regionalization). 179 180Args: 181 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) 182 body: object, The request body. 183 The object takes the form of: 184 185{ # An error event which is reported to the Error Reporting system. 186 "context": { # A description of the context in which an 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. # Optional. A description of the context in which the error occurred. 187 "httpRequest": { # HTTP request data that is related to a reported error. 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. # The HTTP request which was processed when the error was triggered. 188 "method": "A String", # The type of HTTP request, such as `GET`, `POST`, etc. 189 "referrer": "A String", # The referrer information that is provided with the request. 190 "remoteIp": "A String", # 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. 191 "responseStatusCode": 42, # The HTTP response status code for the request. 192 "url": "A String", # The URL of the request. 193 "userAgent": "A String", # The user agent information that is provided with the request. 194 }, 195 "reportLocation": { # Indicates a location in the source code of the service for which errors are 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. # 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. 196 "filePath": "A String", # The source code filename, which can include a truncated relative path, or a full path from a production machine. 197 "functionName": "A String", # 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. 198 "lineNumber": 42, # 1-based. 0 indicates that the line number is unknown. 199 }, 200 "sourceReferences": [ # Source code that was used to build the executable which has caused the given error message. 201 { # A reference to a particular snapshot of the source tree used to build and deploy an application. 202 "repository": "A String", # Optional. A URI string identifying the repository. Example: "https://github.com/GoogleCloudPlatform/kubernetes.git" 203 "revisionId": "A String", # The canonical and persistent identifier of the deployed revision. Example (git): "0035781c50ec7aa23385dc841529ce8a4b70db1b" 204 }, 205 ], 206 "user": "A String", # 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`. 207 }, 208 "eventTime": "A String", # Optional. Time when the event occurred. If not provided, the time when the event was received by the Error Reporting system is used. If provided, the time must not exceed the [logs retention period](https://cloud.google.com/logging/quotas#logs_retention_periods) in the past, or be more than 24 hours in the future. If an invalid time is provided, then an error is returned. 209 "message": "A String", # 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). 210 "serviceContext": { # Describes a running service that sends errors. Its version changes over time and multiple versions can run in parallel. # Required. The service context in which this error has occurred. 211 "resourceType": "A String", # 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. 212 "service": "A String", # 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. 213 "version": "A String", # 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. 214 }, 215} 216 217 x__xgafv: string, V1 error format. 218 Allowed values 219 1 - v1 error format 220 2 - v2 error format 221 222Returns: 223 An object of the form: 224 225 { # Response for reporting an individual error event. Data may be added to this message in the future. 226}</pre> 227</div> 228 229</body></html>