From 59ae9ca09c5a8e47163e637e4f4175b97c6b208d Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Thu, 8 Sep 2016 13:05:53 -0700 Subject: [PATCH] Stackdriver product rename (#209) --- monitoring/create_custom_metric.js | 8 ++++---- monitoring/list_resources.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/monitoring/create_custom_metric.js b/monitoring/create_custom_metric.js index 72c2b27f22..06bc75c9e1 100644 --- a/monitoring/create_custom_metric.js +++ b/monitoring/create_custom_metric.js @@ -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'; @@ -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 = @@ -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) { @@ -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) { diff --git a/monitoring/list_resources.js b/monitoring/list_resources.js index 9d022ba3a0..11a92d289c 100644 --- a/monitoring/list_resources.js +++ b/monitoring/list_resources.js @@ -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';