...
Reference | Description | ||||
---|---|---|---|---|---|
name | Name of the flow | ||||
status | Current status of the flow | ||||
duration | Length of time that the flow execution ran or has run so far | ||||
startTime | Timestamp for when the flow execution began. A null value if the run has not begun. | ||||
endTime | Timestamp for when the flow execution ended. A null value if it has not ended yet. | ||||
lastUpdate | Timestamp for when the flow was last modified | ||||
jobId | Internal identifier for the job that was run or is running for the flow | ||||
user | Internal identifier for the user who executed the job | ||||
jobType | |||||
fileSize | If the output generates a file or files, this value captures the size in KB of the output. | ||||
environment | Running environment where the job was executed | ||||
columnCount | Count of columns generated in the output | ||||
rowCount | Count of rows generated in the output | ||||
dataTypeCount | Count of
| ||||
validValuesCount | Count of valid values in the output | ||||
mismatchedValuesCount | Count of mismatched values in the output | ||||
emptyValuesCount | Count of missing or empty values in the output | ||||
columns | Column information from the selected output for the flow. | ||||
sources | Source filename and table information from the imported datasets. |
Metadata Functions
The following functions can be applied to select metadata references to further filter the raw values.
humanizeDuration
In raw form, the duration
metadata references return values that look like the following:
Code Block |
---|
PT7.523S |
You can apply the HumanizeDuration
function to render the above into a more readable format:
Code Block |
---|
{{ $plan.duration | humanizeDuration }} |
The output of the above applied to the first value is the following:
Code Block |
---|
7.523 seconds |
uuid
You can generate a universally unique identifier, which can be delivered as part of a messaging payload:
Code Block |
---|
{{ uuid() }} |
Additional References
Plan metadata reference information leverages the Nunjucks templating language, which provides additional capabilities such as loops, conditions, filters, and helper functions.
...