[DOCS] Improves description for forecast_stats (#50729)
Co-Authored-By: Lisa Cawley <lcawley@elastic.co>
This commit is contained in:
parent
f75d99149b
commit
d7bb5d7531
|
@ -149,7 +149,8 @@ consider using a longer `bucket_span`.
|
|||
|
||||
[[forecastsstats]]`forecasts_stats`::
|
||||
(object) An object that provides statistical information about forecasts
|
||||
of this job. It has the following properties:
|
||||
belonging to this job. Some statistics are omitted if no forecasts have been
|
||||
made. It has the following properties:
|
||||
+
|
||||
--
|
||||
NOTE: `memory_bytes`, `records`, `processing_time_ms` and `status` require at
|
||||
|
@ -158,23 +159,35 @@ least one forecast. Otherwise, these fields are omitted.
|
|||
--
|
||||
|
||||
`forecasts_stats`.`forecasted_jobs`:::
|
||||
(long) The number of jobs that have at least one forecast.
|
||||
(long) A value of `0` indicates that forecasts do not exist for this job. A
|
||||
value of `1` indicates that at least one forecast exists.
|
||||
|
||||
`forecasts_stats`.`memory_bytes`:::
|
||||
(object) Statistics about the memory usage: minimum, maximum, average and total.
|
||||
(object) The `avg`, `min`, `max` and `total` memory usage in bytes for forecasts
|
||||
related to this job. If there are no forecasts, this property is omitted.
|
||||
|
||||
`forecasts_stats`.`processing_time_ms`:::
|
||||
(object) Statistics about the forecast runtime in milliseconds: minimum, maximum, average and total.
|
||||
(object) Statistics about the forecast runtime in milliseconds: minimum,
|
||||
maximum, average and total.
|
||||
|
||||
`forecasts_stats`.`records`:::
|
||||
(object) Statistics about the number of forecast records: minimum, maximum,
|
||||
average and total.
|
||||
(object) The `avg`, `min`, `max` and `total` number of model_forecast documents
|
||||
written for forecasts related to this job. If there are no forecasts, this
|
||||
property is omitted.
|
||||
|
||||
`forecasts_stats`.`processing_time_ms`:::
|
||||
(object) The `avg`, `min`, `max` and `total` runtime in milliseconds for
|
||||
forecasts related to this job. If there are no forecasts, this property is
|
||||
omitted.
|
||||
|
||||
`forecasts_stats`.`status`:::
|
||||
(object) Counts per forecast status, for example: `{"finished" : 2}`.
|
||||
(object) The count of forecasts by their status. For example:
|
||||
{"finished" : 2, "started" : 1}. If there are no forecasts, this property is
|
||||
omitted.
|
||||
|
||||
`forecasts_stats`.`total`:::
|
||||
(long) The number of forecasts currently available for this model.
|
||||
(long) The number of individual forecasts currently available for this job. A
|
||||
value of `1` or more indicates that forecasts exist.
|
||||
|
||||
`job_id`::
|
||||
(string)
|
||||
|
|
Loading…
Reference in New Issue