Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: fix brand name
Remove "Cloud" from "Cloud Error Reporting".
Leave "Google Cloud Error Reporting" as is.
  • Loading branch information
minherz committed Mar 18, 2022
commit 03b7dcd646e4f72745648b18f644bf649fdbd643
2 changes: 1 addition & 1 deletion .repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"api_shortname": "clouderrorreporting",
"name_pretty": "Cloud Error Reporting",
"name_pretty": "Error Reporting",
"product_documentation": "https://cloud.google.com/error-reporting",
"client_documentation": "https://cloud.google.com/java/docs/reference/google-cloud-errorreporting/latest/history",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559780",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Google Cloud Error Reporting Client for Java

Java idiomatic client for [Cloud Error Reporting][product-docs].
Java idiomatic client for [Error Reporting][product-docs].

[![Maven][maven-version-image]][maven-version-link]
![Stability][stability-image]
Expand Down Expand Up @@ -93,13 +93,13 @@ See the [Authentication][authentication] section in the base directory's README.

## Authorization

The client application making API calls must be granted [authorization scopes][auth-scopes] required for the desired Cloud Error Reporting APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] required to access GCP resources using the Cloud Error Reporting API calls.
The client application making API calls must be granted [authorization scopes][auth-scopes] required for the desired Error Reporting APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] required to access GCP resources using the Error Reporting API calls.

## Getting Started

### Prerequisites

You will need a [Google Cloud Platform Console][developer-console] project with the Cloud Error Reporting [API enabled][enable-api].
You will need a [Google Cloud Platform Console][developer-console] project with the Error Reporting [API enabled][enable-api].

[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
[installing the Google Cloud SDK][cloud-sdk] and running the following commands in command line:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
import com.google.devtools.clouderrorreporting.v1beta1.SourceLocation;

/**
* Snippet demonstrates using the Cloud Error Reporting API to report a custom error event.
* Snippet demonstrates using the Error Reporting API to report a custom error event.
*
* <p>This library is not required on App Engine, errors written to stderr are automatically written
* to Cloud Error Reporting. It is also not required if you are writing logs to Cloud Logging.
* to Error Reporting. It is also not required if you are writing logs to Cloud Logging.
* Errors written to Cloud Logging that contain an exception or stack trace are automatically
* written out to Cloud Error Reporting.
* written out to Error Reporting.
*/
public class QuickStart {
public static void main(String[] args) throws Exception {
Expand Down