package opentsdb type OpenTsdbQuery struct { Start int64 `json:"start"` End int64 `json:"end"` Queries []map[string]interface{} `json:"queries"` } type OpenTsdbResponse struct { Metric string `json:"metric"` DataPoints map[string]float64 `json:"dps"` }