From d80d5981625b025d3f765e32c2c1abedea627fca Mon Sep 17 00:00:00 2001 From: Bill Prin Date: Mon, 27 Mar 2017 14:00:11 -0700 Subject: [PATCH] Fix region tags --- .../src/main/java/com/example/monitoring/Snippets.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/monitoring/cloud-client/src/main/java/com/example/monitoring/Snippets.java b/monitoring/cloud-client/src/main/java/com/example/monitoring/Snippets.java index 217f9fa9017..07df8fe7391 100644 --- a/monitoring/cloud-client/src/main/java/com/example/monitoring/Snippets.java +++ b/monitoring/cloud-client/src/main/java/com/example/monitoring/Snippets.java @@ -115,11 +115,13 @@ void createMetricDescriptor(String type) throws IOException { * @param name Name of metric descriptor to delete */ void deleteMetricDescriptor(String name) throws IOException { + // [START monitoring_delete_metric] String projectId = System.getProperty("projectId"); final MetricServiceClient client = MetricServiceClient.create(); MetricDescriptorName metricName = MetricDescriptorName.create(projectId, name); client.deleteMetricDescriptor(metricName); System.out.println("Deleted descriptor " + name); + // [END monitoring_delete_metric] } /** @@ -447,7 +449,7 @@ void listMonitoredResources() throws IOException { for (MonitoredResourceDescriptor d : descriptors) { System.out.println(d.getType()); } - // [START monitoring_list_resources] + // [END monitoring_list_resources] } /** @@ -455,7 +457,7 @@ void listMonitoredResources() throws IOException { * @param The resource type */ void describeMonitoredResources(String type) throws IOException { - // [START monitoring_list_resources] + // [START monitoring_get_descriptor] // Your Google Cloud Platform project ID String projectId = System.getProperty("projectId"); @@ -465,8 +467,7 @@ void describeMonitoredResources(String type) throws IOException { System.out.println("Printing monitored resource descriptor: "); System.out.println(response); - - // [END monitoring_list_resources] + // [END monitoring_get_descriptor] }