td_analyze_execution
Analyze workflow executions from console URLs or IDs to debug failures, identify slow tasks, and get actionable recommendations for resolving execution issues.
Instructions
Analyze workflow execution from console URL or ID - best for debugging.
Smart analysis tool that accepts URLs from error alerts or IDs. Automatically
detects type and provides comprehensive execution analysis with recommendations.
Accepts:
- Console URLs (e.g., https://console.../app/sessions/123456)
- Session IDs (e.g., 123456789)
- Attempt IDs (e.g., 987654321)
Common scenarios:
- Someone shares a workflow URL in Slack during incident
- Quick analysis when you only have an ID from logs
- One-stop debugging for any execution issue
Returns analysis with failures, slow tasks, and actionable recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url_or_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url_or_id": {
"title": "Url Or Id",
"type": "string"
}
},
"required": [
"url_or_id"
],
"type": "object"
}