diff --git a/pkg/models/timeseries.go b/pkg/models/timeseries.go index 1656d8d60a9..74b489ec36e 100644 --- a/pkg/models/timeseries.go +++ b/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,