Browse Source

stackdriver: remove not used struct

Erik Sundell 7 years ago
parent
commit
1756e82d8b
1 changed files with 0 additions and 21 deletions
  1. 0 21
      pkg/tsdb/stackdriver/types.go

+ 0 - 21
pkg/tsdb/stackdriver/types.go

@@ -73,24 +73,3 @@ type StackdriverResponse struct {
 		} `json:"points"`
 	} `json:"timeSeries"`
 }
-
-type MetricDescriptorsResponse struct {
-	MetricDescriptors []struct {
-		Name   string `json:"name"`
-		Labels []struct {
-			Key         string `json:"key"`
-			Description string `json:"description"`
-		} `json:"labels,omitempty"`
-		MetricKind  string `json:"metricKind"`
-		ValueType   string `json:"valueType"`
-		Unit        string `json:"unit,omitempty"`
-		Description string `json:"description"`
-		DisplayName string `json:"displayName"`
-		Type        string `json:"type"`
-		Metadata    struct {
-			LaunchStage  string `json:"launchStage"`
-			SamplePeriod string `json:"samplePeriod"`
-			IngestDelay  string `json:"ingestDelay"`
-		} `json:"metadata"`
-	} `json:"metricDescriptors"`
-}