models.go 317 B

12345678910111213141516171819202122
  1. package influxdb
  2. type Query struct {
  3. Measurement string
  4. Policy string
  5. ResultFormat string
  6. Tags []*Tag
  7. GroupBy []*QueryPart
  8. Selects []*Select
  9. }
  10. type Tag struct {
  11. Key string
  12. Operator string
  13. Value string
  14. }
  15. type Select []QueryPart
  16. type InfluxDbSelect struct {
  17. Type string
  18. }