types.go 206 B

123456789101112
  1. package prometheus
  2. import "time"
  3. type PrometheusQuery struct {
  4. Expr string
  5. Step time.Duration
  6. LegendFormat string
  7. Start time.Time
  8. End time.Time
  9. RefId string
  10. }