Interpolate series to make stacking work properly in case of different intervals, #1211

This commit is contained in:
Alexander Zobnin
2021-09-15 16:06:53 +03:00
parent a69c866b4e
commit fcef21b0fb
2 changed files with 79 additions and 1 deletions

View File

@@ -126,7 +126,7 @@ func (ds *ZabbixDatasourceInstance) applyDataProcessing(ctx context.Context, que
}
if len(series) > 1 {
series = timeseries.AlignSeriesIntervals(series)
series = timeseries.PrepareForStack(series)
}
}