v0.7.0
Pre-release
Pre-release
[v0.7.0] - 2021-04-05
Added
- Holt Winters values can now be fetched at runtime, rather than simply being hardcoded.
Fixed
- Fixed slow shutdown of PHPA due to ignoring SIGTERM from K8s.
Changed
- Switched from Golang to Python for calculating statistical predictions for Linear Regression and Holt-Winters.
- Holt-Winters now calculated using statsmodels, opening up statsmodels configuration options for tuning.
trend
- Eitheradd
/additive
ormul
/multiplicative
, defines the method for the trend element.seasonal
- Eitheradd
/additive
ormul
/multiplicative
, defines the method for the seasonal element.dampedTrend
- Boolean value to determine if the trend should be damped.initializationMethod
- Which initialization method to use, see statsmodels for details, eitherestimated
,
heuristic
,known
, orlegacy-heuristic
initialLevel
- The initial level value, required ifinitializationMethod
isknown
.initialTrend
- The initial trend value, required ifinitializationMethod
isknown
.initialSeasonal
- The initial seasonal value, required ifinitializationMethod
isknown
.
- Holt-Winters
seasonLength
variable renamed toseasonalPeriods
. - Holt-Winters
method
split intotrend
andseasonal
variables. - Switched docs theme to material theme.