Skip to content

Commit 6ec956b

Browse files
committed
Update Monitoring references.
1 parent de1dd84 commit 6ec956b

File tree

11 files changed

+24
-23
lines changed

11 files changed

+24
-23
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
.. toctree::
115115
:maxdepth: 0
116116
:hidden:
117-
:caption: Cloud Monitoring
117+
:caption: Stackdriver Monitoring
118118

119119
monitoring-usage
120120
Client <monitoring-client>

docs/logging-usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Manage log metrics
136136
------------------
137137

138138
Metrics are counters of entries which match a given filter. They can be
139-
used within Cloud Monitoring to create charts and alerts.
139+
used within Stackdriver Monitoring to create charts and alerts.
140140

141141
Create a metric:
142142

docs/monitoring-client.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Monitoring Client
1+
Stackdriver Monitoring Client
22
=================
33

44
.. automodule:: gcloud.monitoring.client
@@ -11,4 +11,3 @@ Connection
1111
.. automodule:: gcloud.monitoring.connection
1212
:members:
1313
:show-inheritance:
14-

docs/monitoring-usage.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Using the API
55
Introduction
66
------------
77

8-
With the Monitoring API, you can work with Stackdriver metric data
8+
With the Stackdriver Monitoring API, you can work with Stackdriver metric data
99
pertaining to monitored resources in Google Cloud Platform (GCP)
1010
or elsewhere.
1111

@@ -21,7 +21,7 @@ Essential concepts:
2121
- A **time series** is a collection of data points associated with
2222
points or intervals in time.
2323

24-
Please refer to the documentation for the `Monitoring API`_ for
24+
Please refer to the documentation for the `Stackdriver Monitoring API`_ for
2525
more information.
2626

2727
At present, this client library supports the following features
@@ -32,13 +32,13 @@ of the API:
3232
- Creation and deletion of metric descriptors for custom metrics.
3333
- (Writing of custom metric data will be coming soon.)
3434

35-
.. _Monitoring API: https://cloud.google.com/monitoring/api/v3/
35+
.. _Stackdriver Monitoring API: https://cloud.google.com/monitoring/api/v3/
3636

3737

38-
The Monitoring Client Object
39-
----------------------------
38+
The Stackdriver Monitoring Client Object
39+
----------------------------------------
4040

41-
The monitoring client library generally makes its
41+
The Stackdriver Monitoring client library generally makes its
4242
functionality available as methods of the monitoring
4343
:class:`~gcloud.monitoring.client.Client` class.
4444
A :class:`~gcloud.monitoring.client.Client` instance holds

gcloud/monitoring/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Google Monitoring API wrapper."""
15+
"""Google Stackdriver Monitoring API wrapper."""
1616

1717
from gcloud.monitoring.client import Client
1818
from gcloud.monitoring.connection import Connection

gcloud/monitoring/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Client for interacting with the `Google Monitoring API (V3)`_.
15+
"""Client for interacting with the `Google Stackdriver Monitoring API (V3)`_.
1616
1717
Example::
1818
@@ -24,7 +24,8 @@
2424
At present, the client supports querying of time series, metric descriptors,
2525
and monitored resource descriptors.
2626
27-
.. _Google Monitoring API (V3): https://cloud.google.com/monitoring/api/v3/
27+
.. _Google Stackdriver Monitoring API (V3):
28+
https://cloud.google.com/monitoring/api/v3/
2829
"""
2930

3031
from gcloud.client import JSONClient

gcloud/monitoring/connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Create / interact with gcloud monitoring connections."""
15+
"""Create / interact with Stackdriver Monitoring connections."""
1616

1717
from gcloud import connection as base_connection
1818

1919

2020
class Connection(base_connection.JSONConnection):
21-
"""A connection to Google Monitoring via the JSON REST API.
21+
"""A connection to Google Stackdriver Monitoring via the JSON REST API.
2222
2323
:type credentials: :class:`oauth2client.client.OAuth2Credentials`
2424
:param credentials: (Optional) The OAuth2 Credentials to use for this

gcloud/monitoring/metric.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Metric Descriptors for the `Google Monitoring API (V3)`_.
15+
"""Metric Descriptors for the `Google Stackdriver Monitoring API (V3)`_.
1616
17-
.. _Google Monitoring API (V3):
17+
.. _Google Stackdriver Monitoring API (V3):
1818
https://cloud.google.com/monitoring/api/ref_v3/rest/v3/\
1919
projects.metricDescriptors
2020
"""

gcloud/monitoring/query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Time series query for the `Google Monitoring API (V3)`_.
15+
"""Time series query for the `Google Stackdriver Monitoring API (V3)`_.
1616
17-
.. _Google Monitoring API (V3):
17+
.. _Google Stackdriver Monitoring API (V3):
1818
https://cloud.google.com/monitoring/api/ref_v3/rest/v3/\
1919
projects.timeSeries/list
2020
"""

gcloud/monitoring/resource.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Monitored Resource Descriptors for the `Google Monitoring API (V3)`_.
15+
"""Monitored Resource Descriptors for the
16+
`Google Stackdriver Monitoring API (V3)`_.
1617
17-
.. _Google Monitoring API (V3):
18+
.. _Google Stackdriver Monitoring API (V3):
1819
https://cloud.google.com/monitoring/api/ref_v3/rest/v3/\
1920
projects.monitoredResourceDescriptors
2021
"""

0 commit comments

Comments
 (0)