types.go 137 B

123456789
  1. package prometheus
  2. import "time"
  3. type PrometheusQuery struct {
  4. Expr string
  5. Step time.Duration
  6. LegendFormat string
  7. }