td_get_attempt_tasks
Retrieve detailed task breakdowns from workflow executions to identify failed steps, analyze performance bottlenecks, and understand task dependencies for debugging data processing issues.
Instructions
Get task breakdown to find which step failed or is slow in workflow.
Shows all individual tasks (steps) within a workflow execution with their
status, timing, and dependencies. Essential for debugging failed workflows.
Common scenarios:
- Find exactly which task/query failed in a complex workflow
- Identify slow-running tasks causing delays
- Understand task execution order and dependencies
- Debug data processing issues at task level
Returns task list with names, states, timing, and failure details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attempt_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attempt_id": {
"title": "Attempt Id",
"type": "string"
}
},
"required": [
"attempt_id"
],
"type": "object"
}