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

Stackdriver product rename #209

Merged
merged 1 commit into from
Sep 8, 2016
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
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