Explorar o código

style(alerting): add note about making timeseries model safer

bergquist %!s(int64=9) %!d(string=hai) anos
pai
achega
5f2447976c
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      pkg/models/timeseries.go

+ 2 - 0
pkg/models/timeseries.go

@@ -16,6 +16,8 @@ type TimeSeries struct {
 type TimeSeriesSlice []*TimeSeries
 
 func NewTimeSeries(name string, points [][2]float64) *TimeSeries {
+	//Todo: This should be made safer :)
+
 	ts := &TimeSeries{
 		Name:   name,
 		Points: points,