ops0ops0

Workflow Execution

Monitor running workflows, view real-time logs, handle approvals, and manage failures.

Execution View

DAG Progress
Visual step progress with status icons
Step List
All steps with duration and actions
Log Panel
Real-time streaming output
Header
Status, duration, trigger info

Step Status

IconStatusColorMeaning
PendingGrayNot started
WaitingYellowWaiting for approval or dependency
RunningBlueCurrently executing
SuccessGreenCompleted successfully
FailedRedStep failed
SkippedGrayCondition not met
CancelledGrayManually stopped

Real-Time Logs

Click any step to view its output in the log panel.

Log Controls

ButtonDescription
PauseStop auto-scroll
ResumeContinue auto-scroll
DownloadSave logs as file
SearchFilter log output

Log Filtering

FilterDescription
AllShow everything
OutputStandard output only
ErrorsErrors and warnings

Handling Approvals

When a workflow reaches an approval step, it pauses and notifies approvers.

Approval Actions

Approve
Workflow continues to next step
Reject
Workflow fails with rejection reason

Approval Flow

1Review the request message and context
2Click View Plan to see proposed changes
3Click Approve or Reject
4Optionally add a comment

Handling Failures

When a step fails, the workflow stops and shows error details.

Retry Options

OptionDescription
Retry StepRun the failed step again
Retry From HereRestart from this step forward
Skip StepContinue to next step (if allowed)

Cancel Options

OptionDescription
CancelStop the workflow immediately
Cancel with CleanupRun destroy to revert IaC changes

Execution History

View past workflow runs from the History tab.

ColumnDescription
Run IDUnique execution identifier
StatusSuccess, Failed, Cancelled
Triggered ByManual, Schedule, Webhook, Git, Incident
StartedWhen execution began
DurationTotal execution time
UserWho triggered it

Filters

FilterOptions
StatusAll, Success, Failed, Cancelled
Triggered ByAll, Manual, Schedule, Webhook, Git
Date RangeLast 24h, 7d, 30d, Custom

Outputs

After successful completion, view step outputs in the Outputs tab.

{
  "plan": {
    "add": 3,
    "change": 1,
    "destroy": 0
  },
  "apply": {
    "vpc_id": "vpc-12345",
    "subnet_ids": ["subnet-a", "subnet-b"]
  }
}

Example: Successful Deployment

Execution Summary

Workflow: production-deploy
Run ID:   wfr_8x7y6z5w
Status:   Completed ✓
Duration: 5m 32s
Triggered: Git Push (main @ abc1234)

Step Results

Step Progress
─────────────────────────────────────
1. Plan           ✓  12s
   └─ 3 to add, 1 to change

2. Approval       ✓  4m 32s
   └─ Approved by jane@example.com

3. Apply          ✓  45s
   └─ 3 added, 1 changed

4. Health Check   ✓  2s
   └─ HTTP 200 OK

5. Notify         ✓  1s
   └─ Slack message sent

Terraform Output

Apply complete! Resources: 3 added, 1 changed, 0 destroyed.

Outputs:

api_endpoint = "https://api.example.com"
vpc_id = "vpc-0abc123def456"

Example: Handling a Failed Deploy

Failure State

Workflow: production-deploy
Run ID:   wfr_fail123
Status:   Failed ✗
Duration: 2m 15s

Step Results

Step Progress
─────────────────────────────────────
1. Plan           ✓  12s
2. Approval       ✓  1m 45s
3. Apply          ✗  18s  ← FAILED
4. Health Check   ⊘  Skipped
5. Notify         ⊘  Skipped

Error Details

Step: Apply
Status: Failed
Duration: 18s
Exit Code: 1

Error:
  Error creating RDS instance: InvalidParameterValue
  The parameter MasterUserPassword is not a valid password.
  Password must be at least 8 characters.

Actions:
  [View Full Log]  [Retry Step]  [Cancel]

Resolution

1Review the error message
2Fix the Terraform variable (update password length)
3Click Retry Step to re-run Apply
4Workflow resumes from Apply step

After Retry

Step Progress (Retried)
─────────────────────────────────────
1. Plan           ✓  12s
2. Approval       ✓  1m 45s
3. Apply          ✓  52s  ← Retry succeeded
4. Health Check   ✓  2s
5. Notify         ✓  1s

Status: Completed ✓
Total Duration: 4m 52s (including retry)

Troubleshooting

Workflow Stuck on Approval
Check that approvers have access. Verify email/Slack notifications are configured. Approvers can approve from the workflow execution page.
Step Timeout
Increase step timeout in configuration. Check for network issues or slow external APIs. Consider breaking into smaller steps.
Terraform State Lock
Another apply may be running. Check for concurrent workflow executions. Use workflow concurrency settings to prevent conflicts.
Webhook Not Triggering
Verify webhook secret is correct. Check that workflow is Active (not Paused). Review webhook logs in trigger history.