-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing holtWinters* functions #66
Comments
Use https://github.com/datastream/holtwinters as a base instead of doing the math ourselves, if possible. |
This has stalled slightly because it's not just a case of dropping-in a library. HoltWinters needs several weeks of earlier data in order to correctly compute the seasonality for its predictions, which means we need to collect bootstrap data similar to how timeShift() works. |
I'm replacing the Holt-Winters code and hopefully will fix this at the same time. |
The patch in d4efd70 can be easily extended to add in the two other HW functions we're missing. As far as I can tell, nobody is using them at the moment, so I won't implement that right now. |
This is sufficiently done. |
* Fix race condition for close and read of QueryFinished channel (by introducing mutex around it) * Cache returns "nil, true" in case of timeout Should fix #66
…1419 Add missing tags based on MetricData.Name
There are people that would like to use with carbonapi the holtWinters functions present in the python version
The text was updated successfully, but these errors were encountered: