You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bootstrapInterval parameter in the holtWinters* functions is not being handled correctly. An issue is occurring when a bootstrapInterval that is not the default value of 7d is specified. In parser.go, the start time for holtWinters* functions is adjusted by subtracting 7 * 86400 (equivalent to 7 days), prior to the data being fetched. This is not taking the bootstrapInterval from the query into account, and is just applying the default value. However, if the bootstrapInterval is set to a different value, then inside of the holtWinters* functions, the from time is adjusted to the specified bootstrap interval, but the new starting time does not match the data that was previously fetched. This caused nil results to be returned. Instead, the specified bootstrapInterval (when included in the query) should be factoring in when adjusting the from time prior to fetching data.
The text was updated successfully, but these errors were encountered:
The bootstrapInterval parameter in the holtWinters* functions is not being handled correctly. An issue is occurring when a bootstrapInterval that is not the default value of 7d is specified. In parser.go, the start time for holtWinters* functions is adjusted by subtracting 7 * 86400 (equivalent to 7 days), prior to the data being fetched. This is not taking the bootstrapInterval from the query into account, and is just applying the default value. However, if the bootstrapInterval is set to a different value, then inside of the holtWinters* functions, the from time is adjusted to the specified bootstrap interval, but the new starting time does not match the data that was previously fetched. This caused nil results to be returned. Instead, the specified bootstrapInterval (when included in the query) should be factoring in when adjusting the from time prior to fetching data.
The text was updated successfully, but these errors were encountered: