Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add api-logging to codeowners #34

Merged
merged 1 commit into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax

# The @googleapis/yoshi-python is the default owner for changes in this repo
* @googleapis/yoshi-python
* @googleapis/api-logging @googleapis/yoshi-python


/samples/**/*.py @googleapis/python-samples-owners
5 changes: 3 additions & 2 deletions .repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clouderrorreporting",
"name_pretty": "Stackdriver Error Reporting",
"name_pretty": "Cloud Error Reporting",
"product_documentation": "https://cloud.google.com/error-reporting",
"client_documentation": "https://googleapis.dev/python/clouderrorreporting/latest",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559780",
Expand All @@ -9,5 +9,6 @@
"repo": "googleapis/python-error-reporting",
"distribution_name": "google-cloud-error-reporting",
"api_id": "clouderrorreporting.googleapis.com",
"requires_billing": false
"requires_billing": false,
"codeowner_team": "@googleapis/api-logging"
}
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Python Client for Stackdriver Error Reporting
Python Client for Cloud Error Reporting
=============================================

|beta| |pypi| |versions|

The Stackdriver `Error Reporting`_ API counts, analyzes and aggregates the
The Cloud `Error Reporting`_ API 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
Expand Down
8 changes: 4 additions & 4 deletions docs/usage.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Using Stackdriver Error Reporting
Using Cloud Error Reporting
=================================

After configuring your environment, create a
Expand Down Expand Up @@ -35,7 +35,7 @@ also optionally specify a version for that service, which defaults to
Reporting an exception
-----------------------

Report a stacktrace to Stackdriver Error Reporting after an exception:
Report a stacktrace to Cloud Error Reporting after an exception:

.. code-block:: python

Expand All @@ -54,7 +54,7 @@ the client's constructor, or the default service of "python".
The user and HTTP context can also be included in the exception. The HTTP
context can be constructed using
:class:`google.cloud.error_reporting.HTTPContext`. This will be used by
Stackdriver Error Reporting to help group exceptions.
Cloud Error Reporting to help group exceptions.

.. code-block:: python

Expand Down Expand Up @@ -88,7 +88,7 @@ object is provided.
Reporting an error without an exception
-----------------------------------------

Errors can also be reported to Stackdriver Error Reporting outside the context
Errors can also be reported to Cloud Error Reporting outside the context
of an exception. The library will include the file path, function name, and
line number of the location where the error was reported.

Expand Down