Skip to content

Commit 59dd88d

Browse files
Takashi Matsuojmdobry
Takashi Matsuo
authored andcommitted
Stackdriver product rename (#209)
1 parent 8602abb commit 59dd88d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

monitoring/snippets/create_custom_metric.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
/**
1515
* @fileoverview Simple command-line program to demonstrate creating a custom
16-
* metric with the Google Cloud Monitoring API, writing a random value to it,
16+
* metric with the Stackdriver Monitoring API, writing a random value to it,
1717
* and reading it back.
1818
*/
1919
'use strict';
@@ -107,7 +107,7 @@ CustomMetrics.prototype.createCustomMetric = function (client, callback) {
107107
* demonstration purposes, this is a random value. For GAUGE measurements,
108108
* the start time and end time of the value must be the same. The
109109
* resource for this value is a hypothetical GCE instance.
110-
* @param {Object} authClient The authorized Google Cloud Monitoring API client
110+
* @param {Object} authClient The authorized Stackdriver Monitoring API client
111111
* @param {Function} callback Callback Function.
112112
*/
113113
CustomMetrics.prototype.writeTimeSeriesForCustomMetric =
@@ -159,7 +159,7 @@ CustomMetrics.prototype.writeTimeSeriesForCustomMetric =
159159
* to read the timeseries starts an hour ago and extends unti the current
160160
* time, so should include the metric value written by
161161
* the earlier calls.
162-
* @param {Object} authClient The authorized Google Cloud Monitoring API client
162+
* @param {Object} authClient The authorized Stackdriver Monitoring API client
163163
* @param {Function} callback Callback function.
164164
*/
165165
CustomMetrics.prototype.listTimeSeries = function (client, callback) {
@@ -187,7 +187,7 @@ CustomMetrics.prototype.listTimeSeries = function (client, callback) {
187187
};
188188

189189
/**
190-
* @param {Object} authClient The authorized Google Cloud Monitoring API client
190+
* @param {Object} authClient The authorized Stackdriver Monitoring API client
191191
* @param {Function} callback Callback function.
192192
*/
193193
CustomMetrics.prototype.deleteMetric = function (client, callback) {

monitoring/snippets/list_resources.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
/**
1515
* @fileoverview Simple command-line program to demonstrate connecting to the
16-
* Google Monitoring API to retrieve API data.
16+
* Stackdriver Monitoring API to retrieve API data.
1717
*/
1818
'use strict';
1919

0 commit comments

Comments
 (0)