types.go 153 B

12345678
  1. package alerting
  2. type TimeSeries struct {
  3. Name string `json:"name"`
  4. Points [][2]float64 `json:"points"`
  5. }
  6. type TimeSeriesSlice []*TimeSeries