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
Prev Previous commit
🦉 Updates from OwlBot post-processor
  • Loading branch information
gcf-owl-bot[bot] committed Mar 18, 2022
commit c9f5eddc0cafb7257990b81c0b91c38be4b00285
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Google Cloud Error Reporting Client for Java
# Google Error Reporting Client for Java

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

Expand Down Expand Up @@ -110,13 +110,13 @@ You will need a [Google Cloud Platform Console][developer-console] project with
You'll need to obtain the `google-cloud-errorreporting` library. See the [Quickstart](#quickstart) section
to add `google-cloud-errorreporting` as a dependency in your code.

## About Cloud Error Reporting
## About Error Reporting


[Cloud Error Reporting][product-docs] counts, analyzes, and aggregates the crashes in your running cloud services. A centralized error management interface displays the results with sorting and filtering capabilities. A dedicated view shows the error details: time chart, occurrences, affected user count, first- and last-seen dates and a cleaned exception stack trace. Opt in to receive email and mobile alerts on new errors.
[Error Reporting][product-docs] counts, analyzes, and aggregates the crashes in your running cloud services. A centralized error management interface displays the results with sorting and filtering capabilities. A dedicated view shows the error details: time chart, occurrences, affected user count, first- and last-seen dates and a cleaned exception stack trace. Opt in to receive email and mobile alerts on new errors.

See the [Cloud Error Reporting client library docs][javadocs] to learn how to
use this Cloud Error Reporting Client Library.
See the [Error Reporting client library docs][javadocs] to learn how to
use this Error Reporting Client Library.



Expand All @@ -138,7 +138,7 @@ To get help, follow the instructions in the [shared Troubleshooting document][tr

## Transport

Cloud Error Reporting uses gRPC for the transport layer.
Error Reporting uses gRPC for the transport layer.

## Supported Java Versions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
* 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 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 Error Reporting.
* 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 Error Reporting.
*/
public class QuickStart {
public static void main(String[] args) throws Exception {
Expand Down