query.go 192 B

123456789101112
  1. package tsdb
  2. type Query struct {
  3. RefId string
  4. Query string
  5. Depends []string
  6. DataSource *DataSourceInfo
  7. Results []*TimeSeries
  8. Exclude bool
  9. }
  10. type QuerySlice []*Query