td_list_sessions
Monitor recent workflow executions to check status and identify failures. Shows scheduled runs with execution details, filterable by workflow ID for targeted analysis.
Instructions
List recent workflow executions to monitor status and find failures.
Shows recent scheduled runs (sessions) with their execution status. Filter by
workflow ID to see history of a specific workflow, or leave empty for all.
Common scenarios:
- Check which workflows ran recently and their status
- Find failed executions that need investigation
- Monitor execution patterns for a specific workflow
- Get session IDs for detailed analysis
Returns list with workflow names, execution times, and success/failure status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
workflow_id | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 20,
"title": "Count",
"type": "integer"
},
"workflow_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Workflow Id"
}
},
"type": "object"
}