diff --git a/pkg/tsdb/stackdriver/types.go b/pkg/tsdb/stackdriver/types.go index de6daa5dc06..3821ce7ceda 100644 --- a/pkg/tsdb/stackdriver/types.go +++ b/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"` -}