ClusterPlanStepLogMessageInfoedit

The log message from a specified stage of an executed step in a plan.

Propertiesedit

delta_in_millis (integer as int64)
Time in milliseconds since previous log message
details (map[string,string], required)
A map with details for the log about what happened during the step execution. Keys and values for are always both strings, representing the name of the detail and its value, respectively.
failure_type (string)
The failure type, in case the step failed
internal_details (map[string,string])
A json object with sensitive details for the log, visible only to admins. May contain nested json objects.
message (string, required)
Human readable log message
stage (string; allowed values: [starting, completed, in_progress], required)
Stage that info log message takes place in
timestamp (string as date-time, required)
Timestamp marking on info log of step

Exampleedit

{
   "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"
}