types.go 185 B

1234567891011
  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. }