models.go 338 B

1234567891011121314151617181920212223
  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. Condition string
  15. }
  16. type Select []QueryPart
  17. type InfluxDbSelect struct {
  18. Type string
  19. }