Skip to content

Commit

Permalink
Stackdriver product rename (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored and jmdobry committed Sep 8, 2016
1 parent b5f33bf commit 59ae9ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions monitoring/create_custom_metric.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

/**
* @fileoverview Simple command-line program to demonstrate creating a custom
* metric with the Google Cloud Monitoring API, writing a random value to it,
* metric with the Stackdriver Monitoring API, writing a random value to it,
* and reading it back.
*/
'use strict';
Expand Down Expand Up @@ -107,7 +107,7 @@ CustomMetrics.prototype.createCustomMetric = function (client, callback) {
* demonstration purposes, this is a random value. For GAUGE measurements,
* the start time and end time of the value must be the same. The
* resource for this value is a hypothetical GCE instance.
* @param {Object} authClient The authorized Google Cloud Monitoring API client
* @param {Object} authClient The authorized Stackdriver Monitoring API client
* @param {Function} callback Callback Function.
*/
CustomMetrics.prototype.writeTimeSeriesForCustomMetric =
Expand Down Expand Up @@ -159,7 +159,7 @@ CustomMetrics.prototype.writeTimeSeriesForCustomMetric =
* to read the timeseries starts an hour ago and extends unti the current
* time, so should include the metric value written by
* the earlier calls.
* @param {Object} authClient The authorized Google Cloud Monitoring API client
* @param {Object} authClient The authorized Stackdriver Monitoring API client
* @param {Function} callback Callback function.
*/
CustomMetrics.prototype.listTimeSeries = function (client, callback) {
Expand Down Expand Up @@ -187,7 +187,7 @@ CustomMetrics.prototype.listTimeSeries = function (client, callback) {
};

/**
* @param {Object} authClient The authorized Google Cloud Monitoring API client
* @param {Object} authClient The authorized Stackdriver Monitoring API client
* @param {Function} callback Callback function.
*/
CustomMetrics.prototype.deleteMetric = function (client, callback) {
Expand Down
2 changes: 1 addition & 1 deletion monitoring/list_resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

/**
* @fileoverview Simple command-line program to demonstrate connecting to the
* Google Monitoring API to retrieve API data.
* Stackdriver Monitoring API to retrieve API data.
*/
'use strict';

Expand Down

0 comments on commit 59ae9ca

Please sign in to comment.