Skip to main content

Run History

The Run History feature in workflows is essential for monitoring and managing your workflows. This page provides detailed information on how to read and understand the execution of each workflow run.




Workflow runs

You can access the history of all workflow runs of your workflow by clicking the Run History button located at the bottom left corner of the workflow editor. The workflow run logs are categorized into two tabs:

  • All Runs
    • Lists all workflow executions, including both successful and failed runs, with the most recent run displayed at the top.
  • Failed Runs
    • Displays only the workflow runs that encountered issues and did not complete successfully, also with the most recent run displayed at the top.

Run details

Each workflow run can be uniquely identified by its timestamp and ID:

Timestamp

Each workflow run has a timestamp associated with it indicating when the run was triggered. The timestamp format used is DD/MM/YY | HH:MM:SS. For example, 28/06/24 | 20:08:17.

ID

Each workflow run has a unique ID generated when the workflow run is triggered and is available in the response that indicates the run has successfully started. Below is an example response generated when a workflow run is triggered:

{
"responseMeta": {
"status": 200,
"success": true
},
"data": {
"workflowRunId": "JV4FA7WS"
},
"errorDisplay": ""
}

The detailed execution of each workflow run can be viewed by selecting a specific run, which opens up a detailed view on the right side.

Detailed view

The run details provide a comprehensive view of each activity's execution within a workflow run, showing timestamps, unique IDs, and detailed logs in chronological order from initiation to completion.

Workflow Log Details
Workflow Log Details
  • Timestamps - Each log entry, from the start to the completion of the workflow execution, has an associated timestamp indicating when each activity started and ended. This helps in understanding the duration of each activity and the overall workflow completion time.
  • Activity - The logs present the sequence of activities performed during the workflow, including the parameters passed and any errors encountered. Each activity is identified by its name (e.g., query name or JS object name) and includes start and end timestamps for detailed analysis.

Important considerations

  • Unique ID - Use the unique ID to quickly locate and review specific workflow runs.
  • Timestamps - Check the timestamps to understand the timeline and duration of each activity.
  • Expand activities - Expand activities to verify the details of each processing step.
  • Failed runs - Focus on the Failed Runs tab to diagnose and resolve issues.