feat(alerting): abstract graphite from executor

This commit is contained in:
bergquist
2016-05-27 12:06:41 +02:00
parent 3d66ec816d
commit 422234d03a
5 changed files with 35 additions and 23 deletions

8
pkg/models/timeseries.go Normal file
View File

@@ -0,0 +1,8 @@
package models
type TimeSeries struct {
Name string `json:"name"`
Points [][2]float64 `json:"points"`
}
type TimeSeriesSlice []*TimeSeries