From ee947dc0e5558acaccbda0966b7451566f784578 Mon Sep 17 00:00:00 2001 From: Eric Johnson Date: Tue, 1 Mar 2016 22:51:06 +0000 Subject: [PATCH] Fix copy/paste error for reading timeseries --- monitoring/api/labeled_custom_metric.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/monitoring/api/labeled_custom_metric.py b/monitoring/api/labeled_custom_metric.py index 9fd6c4d77ce6..fec346d852f5 100644 --- a/monitoring/api/labeled_custom_metric.py +++ b/monitoring/api/labeled_custom_metric.py @@ -177,8 +177,7 @@ def main(project_id, color, size, count): write_custom_metric(client, project_id, now_rfc3339, color, size, count) print ("Reading data from custom metric timeseries...") - write_custom_metric(client, project_id, now_rfc3339, color, - size, count) + read_custom_metric(client, project_id, now_rfc3339, color, size) if __name__ == '__main__':