ExecutionList Embeddable
The ExecutionList
embeddable offers an easy-to-implement, UI-based workflow to view all executions of one pipeline or to view all executions across all pipelines. It allows you to get an overview of successful and failed runs and allows you to download the output data of successful executions.
Configure the component based on your specific use case
Add the code snippet below and insert the component on the page where you want it to appear:
Fields
accessToken
Add here your access token
pipelineId
Add here the ID of the pipeline you want to display the executions for or not if you want to view all executions across all pipelines
settings
i18nOverrides
Allows you to override each text element in the interface
language
Defines the language of the flow. So far we only support English ("en"
)
modal
Defines whether the component is shown inline (false
) or within a modal view (true
)
onExecutionView
Runs after the user has clicked the "View" button for one execution
onClose
Runs when the user trys to close the modal by using the "X" button or clicking outside the modal
Component
<ExecutionList
accessToken=string
pipelineId=string
settings={{
i18nOverrides: {},
language: "en",
modal: boolean (default: true)
}}
onExecutionView={({data}) => {
// runs when the "View/Fix" button is pressed
// data: execution object of the selected execution
}}
onClose={() => {
// runs when the creation workflow is closed via the "X" button or clicking outside the modal
}}
/>