IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
ClusterPlanStepInfo
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
ClusterPlanStepInfo
editInformation about a step in a plan.
Properties
edit-
completed(stringasdate-time) - When the step completed (ISO format in UTC)
-
duration_in_millis(integerasint64) - The duration of the step in MS
-
info_log(array[ClusterPlanStepLogMessageInfo], required) - Human readable summaries of the step, including messages for each stage of the step
-
stage(string; allowed values: [starting,completed,in_progress], required) - Current stage that the step is in
-
started(stringasdate-time, required) - When the step started (ISO format in UTC)
-
status(string; allowed values: [success,warning,error,pending], required) - The status of the step (success, warning, error - warning means something didn't go as expected but it was not serious enough to abort the plan)
-
step_id(string, required) - ID of current step
Example
edit{
"completed" : "2019-01-01T00:00:00Z",
"duration_in_millis" : 0,
"info_log" : [
{
"delta_in_millis" : 0,
"details" : {
"some_property" : "string"
},
"failure_type" : "string",
"internal_details" : {
"some_property" : "string"
},
"message" : "string",
"stage" : "string",
"timestamp" : "2019-01-01T00:00:00Z"
}
],
"stage" : "string",
"started" : "2019-01-01T00:00:00Z",
"status" : "string",
"step_id" : "string"
}