How to predict N days using data frame regression model and streaming data?

We have given system metrics dataset and the requirement is to predict when do we need to upgrade our servers. Basically what were trying to do is capacity planning using regression analysis. Were done with creating the model, but how do we implement this in a streaming dataset? and be able to predict/forecast the next N days?

Is this in reference to Machine Learning?

yes :slight_smile:

Lets say were done preparing the model (through data frame), how can we implement this in our streaming data, that whenever we wanted to predict the future value for N days, we can easily visualize it in the dashboard?

Why not use forecasting instead of regression? Forecasting is much more appropriate for a streaming , near real-time use case. It leverages the unsupervised models built by the anomaly detection jobs, but you certainly don't have to pay attention to any of the anomalies raised by the jobs - just merely benefit from the forecasts.

1 Like

For the purpose of capacity planning, yes anomaly detection can do that for sure. Thanks! But how about in the near future, if we want to use dat frame analytics, is there any way we can use the elastic forecast?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.