From 86792202c43d91d0e40dca2e28a5ba06a78e86a3 Mon Sep 17 00:00:00 2001 From: Bill Prin Date: Fri, 10 Feb 2017 14:32:40 -0800 Subject: [PATCH] Fix mon reginos (#798) --- monitoring/api/v3/cloud-client/snippets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring/api/v3/cloud-client/snippets.py b/monitoring/api/v3/cloud-client/snippets.py index 430d1b938657..e44d0d017eca 100644 --- a/monitoring/api/v3/cloud-client/snippets.py +++ b/monitoring/api/v3/cloud-client/snippets.py @@ -128,10 +128,10 @@ def get_monitored_resource_descriptor(type_): def get_metric_descriptor(type_): - # [START get_monitored_resources] + # [START get_metric_descriptor] client = monitoring.Client() print(client.fetch_metric_descriptor(type_)) - # [END get_monitored_resources] + # [END get_metric_descriptor] if __name__ == '__main__':