Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 5dfc369

Browse files
author
Simon Zeltser
authored
chore: add api-logging to codeowners (#262)
* Add api-logging to codeowners * chore: add api-logging to codeowners * chore: update repo metadata with codeowners
1 parent 0a22244 commit 5dfc369

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# For syntax help see:
55
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax
66

7-
* @googleapis/yoshi-java
7+
* @googleapis/api-logging @googleapis/yoshi-java
88

99
# The java-samples-reviewers team is the default owner for samples changes
10-
samples/**/*.java @googleapis/java-samples-reviewers
10+
samples/**/*.java @googleapis/api-logging @googleapis/java-samples-reviewers

.repo-metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clouderrorreporting",
3-
"name_pretty": "Stackdriver Error Reporting",
3+
"name_pretty": "Cloud Error Reporting",
44
"product_documentation": "https://cloud.google.com/error-reporting",
55
"client_documentation": "https://googleapis.dev/java/google-cloud-errorreporting/latest/",
66
"issue_tracker": "https://issuetracker.google.com/savedsearches/559780",
@@ -11,5 +11,6 @@
1111
"distribution_name": "com.google.cloud:google-cloud-errorreporting",
1212
"api_id": "clouderrorreporting.googleapis.com",
1313
"transport": "grpc",
14+
"codeowner_team": "@googleapis/api-logging",
1415
"api_description": "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."
1516
}

CONTRIBUTING.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ This project follows
3131

3232
To build, package, and run all unit tests run the command
3333

34-
```
34+
```bash
3535
mvn clean verify
3636
```
3737

3838
### Running Integration tests
3939

4040
To include integration tests when building the project, you need access to
41-
a GCP Project with a valid service account.
41+
a GCP Project with a valid service account.
4242

4343
For instructions on how to generate a service account and corresponding
4444
credentials JSON see: [Creating a Service Account][1].
@@ -57,14 +57,15 @@ Code Samples must be bundled in separate Maven modules, and guarded by a
5757
Maven profile with the name `enable-samples`.
5858

5959
The samples must be separate from the primary project for a few reasons:
60+
6061
1. Primary projects have a minimum Java version of Java 7 whereas samples have
6162
a minimum Java version of Java 8. Due to this we need the ability to
6263
selectively exclude samples from a build run.
6364
2. Many code samples depend on external GCP services and need
6465
credentials to access the service.
65-
3. Code samples are not released as Maven artifacts and must be excluded from
66+
3. Code samples are not released as Maven artifacts and must be excluded from
6667
release builds.
67-
68+
6869
### Building
6970

7071
```bash
@@ -106,13 +107,14 @@ mvn -Penable-samples clean verify
106107
Code in this repo is formatted with
107108
[google-java-format](https://github.com/google/google-java-format).
108109
To run formatting on your project, you can run:
109-
```
110+
111+
```bash
110112
mvn com.coveo:fmt-maven-plugin:format
111113
```
112114

113115
### Profile Activation
114116

115-
To include code samples when building and testing the project, enable the
117+
To include code samples when building and testing the project, enable the
116118
`enable-samples` Maven profile.
117119

118120
#### Command line

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Google Stackdriver Error Reporting Client for Java
1+
# Google Cloud Error Reporting Client for Java
22

3-
Java idiomatic client for [Stackdriver Error Reporting][product-docs].
3+
Java idiomatic client for [Cloud Error Reporting][product-docs].
44

55
[![Maven][maven-version-image]][maven-version-link]
66
![Stability][stability-image]
@@ -82,7 +82,7 @@ See the [Authentication][authentication] section in the base directory's README.
8282

8383
### Prerequisites
8484

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

8787
[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
8888
[installing the Google Cloud SDK][cloud-sdk] and running the following commands in command line:
@@ -93,13 +93,13 @@ You will need a [Google Cloud Platform Console][developer-console] project with
9393
You'll need to obtain the `google-cloud-errorreporting` library. See the [Quickstart](#quickstart) section
9494
to add `google-cloud-errorreporting` as a dependency in your code.
9595

96-
## About Stackdriver Error Reporting
96+
## About Cloud Error Reporting
9797

9898

99-
[Stackdriver 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.
99+
[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.
100100

101-
See the [Stackdriver Error Reporting client library docs][javadocs] to learn how to
102-
use this Stackdriver Error Reporting Client Library.
101+
See the [Cloud Error Reporting client library docs][javadocs] to learn how to
102+
use this Cloud Error Reporting Client Library.
103103

104104

105105

@@ -122,7 +122,7 @@ To get help, follow the instructions in the [shared Troubleshooting document][tr
122122

123123
## Transport
124124

125-
Stackdriver Error Reporting uses gRPC for the transport layer.
125+
Cloud Error Reporting uses gRPC for the transport layer.
126126

127127
## Java Versions
128128

0 commit comments

Comments
 (0)