Carries information about events that occur during pipeline execution.
JSON representation |
---|
{ "timestamp": string, "description": string, // Union field |
Fields | |
---|---|
timestamp |
The time at which the event occurred. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
description |
A human-readable description of the event. Note that these strings can change at any time without notice. Any application logic must use the information in the |
Union field details . Machine-readable details about the event. details can be only one of the following: |
|
delayed |
|
workerAssigned |
|
workerReleased |
|
pullStarted |
|
pullStopped |
|
containerStarted |
|
containerStopped |
|
containerKilled |
|
unexpectedExitStatus |
See |
failed |
|
WorkerAssignedEvent
An event generated after a worker VM has been assigned to run the pipeline.
JSON representation |
---|
{ "zone": string, "instance": string, "machineType": string } |
Fields | |
---|---|
zone |
The zone the worker is running in. |
instance |
The worker's instance name. |
machineType |
The machine type that was assigned for the worker. |
WorkerReleasedEvent
An event generated when the worker VM that was assigned to the pipeline has been released (deleted).
JSON representation |
---|
{ "zone": string, "instance": string } |
Fields | |
---|---|
zone |
The zone the worker was running in. |
instance |
The worker's instance name. |
PullStartedEvent
An event generated when the worker starts pulling an image.
JSON representation |
---|
{ "imageUri": string } |
Fields | |
---|---|
imageUri |
The URI of the image that was pulled. |
PullStoppedEvent
An event generated when the worker stops pulling an image.
JSON representation |
---|
{ "imageUri": string } |
Fields | |
---|---|
imageUri |
The URI of the image that was pulled. |
UnexpectedExitStatusEvent
An event generated when the execution of a container results in a non-zero exit status that was not otherwise ignored. Execution will continue, but only actions that are flagged as ALWAYS_RUN
will be executed. Other actions will be skipped.
JSON representation |
---|
{ "actionId": integer, "exitStatus": integer } |
Fields | |
---|---|
actionId |
The numeric ID of the action that started the container. |
exitStatus |
The exit status of the container. |
FailedEvent
An event generated when the execution of a pipeline has failed. Note that other events can continue to occur after this event.
JSON representation |
---|
{
"code": enum ( |
Fields | |
---|---|
code |
The Google standard error code that best describes this failure. |
cause |
The human-readable description of the cause of the failure. |