1 // Copyright 2024 Google LLC 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // https://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 // Code generated by protoc-gen-go_gapic. DO NOT EDIT. 16 17 package monitoring_test 18 19 import ( 20 "context" 21 22 monitoring "cloud.google.com/go/monitoring/apiv3/v2" 23 monitoringpb "cloud.google.com/go/monitoring/apiv3/v2/monitoringpb" 24 "google.golang.org/api/iterator" 25 ) 26 27 func ExampleNewQueryClient() { 28 ctx := context.Background() 29 // This snippet has been automatically generated and should be regarded as a code template only. 30 // It will require modifications to work: 31 // - It may require correct/in-range values for request initialization. 32 // - It may require specifying regional endpoints when creating the service client as shown in: 33 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 34 c, err := monitoring.NewQueryClient(ctx) 35 if err != nil { 36 // TODO: Handle error. 37 } 38 defer c.Close() 39 40 // TODO: Use client. 41 _ = c 42 } 43 44 func ExampleQueryClient_QueryTimeSeries() { 45 ctx := context.Background() 46 // This snippet has been automatically generated and should be regarded as a code template only. 47 // It will require modifications to work: 48 // - It may require correct/in-range values for request initialization. 49 // - It may require specifying regional endpoints when creating the service client as shown in: 50 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 51 c, err := monitoring.NewQueryClient(ctx) 52 if err != nil { 53 // TODO: Handle error. 54 } 55 defer c.Close() 56 57 req := &monitoringpb.QueryTimeSeriesRequest{ 58 // TODO: Fill request struct fields. 59 // See https://pkg.go.dev/cloud.google.com/go/monitoring/apiv3/v2/monitoringpb#QueryTimeSeriesRequest. 60 } 61 it := c.QueryTimeSeries(ctx, req) 62 for { 63 resp, err := it.Next() 64 if err == iterator.Done { 65 break 66 } 67 if err != nil { 68 // TODO: Handle error. 69 } 70 // TODO: Use resp. 71 _ = resp 72 73 // If you need to access the underlying RPC response, 74 // you can do so by casting the `Response` as below. 75 // Otherwise, remove this line. Only populated after 76 // first call to Next(). Not safe for concurrent access. 77 _ = it.Response.(*monitoringpb.QueryTimeSeriesResponse) 78 } 79 } 80