Error
Error describes why the execution was abnormally terminated.Fields | |
---|---|
context |
Human readable stack trace string.
|
payload |
Error message and data returned represented as a JSON string.
|
stackTrace |
Stack trace with detailed information of where error was generated.
|
Execution
A running instance of a Workflow.Fields | |
---|---|
argument |
Input parameters of the execution represented as a JSON string. The size limit is 32KB. Note: If you are using the REST API directly to run your workflow, you must escape any JSON string value of
|
callLogLevel |
The call logging level associated to this execution.
|
Enum type. Can be one of the following: | |
CALL_LOG_LEVEL_UNSPECIFIED |
No call logging specified. |
LOG_ALL_CALLS |
Log all call steps within workflows, all call returns, and all exceptions raised. |
LOG_ERRORS_ONLY |
Log only exceptions that are raised from call steps within workflows. |
endTime |
Output only. Marks the end of execution, successful or not.
|
error |
Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is
|
name |
Output only. The resource name of the execution. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
|
result |
Output only. Output of the execution represented as a JSON string. The value can only be present if the execution's state is
|
startTime |
Output only. Marks the beginning of execution.
|
state |
Output only. Current state of the execution.
|
Enum type. Can be one of the following: | |
STATE_UNSPECIFIED |
Invalid state. |
ACTIVE |
The execution is in progress. |
SUCCEEDED |
The execution finished successfully. |
FAILED |
The execution failed with an error. |
CANCELLED |
The execution was stopped intentionally. |
workflowRevisionId |
Output only. Revision of the workflow this execution is using.
|
ListExecutionsResponse
Response for the ListExecutions method.Fields | |
---|---|
executions[] |
The executions which match the request.
|
nextPageToken |
A token, which can be sent as
|
Position
Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes.Fields | |
---|---|
column |
The source code column position (of the line) the current instruction was generated from.
|
length |
The length in bytes of text in this character group, e.g. digits of a number, string length, or AST (abstract syntax tree) node.
|
line |
The source code line number the current instruction was generated from.
|
StackTrace
A collection of stack elements (frames) where an error occurred.Fields | |
---|---|
elements[] |
An array of Stack elements.
|
StackTraceElement
A single stack element (frame) where an error occurred.Fields | |
---|---|
position |
The source position information of the stacktrace element.
|
routine |
The routine where the error occurred.
|
step |
The step the error occurred at.
|