Skip to content
Merged
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
7 changes: 3 additions & 4 deletions stackdriver_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ func createMonitoringService() (*monitoring.Service, error) {
ctx := context.Background()

googleClient, err := google.DefaultClient(ctx, monitoring.MonitoringReadScope)
if err != nil {
return nil, fmt.Errorf("Error creating Google client: %v", err)
}

googleClient.Timeout = *stackdriverHttpTimeout
googleClient.Transport = rehttp.NewTransport(
Expand All @@ -86,10 +89,6 @@ func createMonitoringService() (*monitoring.Service, error) {
rehttp.ExpJitterDelay(*stackdriverBackoffJitterBase, *stackdriverMaxBackoffDuration), // Set timeout to <10s as that is prom default timeout
)

if err != nil {
return nil, fmt.Errorf("Error creating Google client: %v", err)
}

monitoringService, err := monitoring.New(googleClient)
if err != nil {
return nil, fmt.Errorf("Error creating Google Stackdriver Monitoring service: %v", err)
Expand Down