Multiple Machine Learning Job Id Forecast Prediction Visualization

I would like to plot multiple job_id forecast predictions in a Basic Char Line, Currently i'm getting the forecast_prediction data with the following query in DevTools of Kibana:

GET .ml-anomalies-shared/_search
{
  "query": {
    "bool": {
      "filter": [
        {
          "query_string": {
            "query": "result_type:model_forecast"
          }
        },
        {
          "query_string": {
            "query": "job_id:peso-colombiano-2017"
          }
        }
      ]
    }
  }
}

Filters and Y-axis:

X-axis:

Chart:

1 Like

Thanks! It works!!

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