td_find_workflow
Locate Treasure Data workflows by name to retrieve IDs, project details, and execution status. Filter by project or status to identify specific workflows for monitoring or analysis.
Instructions
Find workflows by name to get IDs and check execution status.
Essential for locating specific workflows when you know the name.
Returns workflow IDs, project info, and latest execution status.
Common scenarios:
- User mentions workflow name, need to find details
- Looking for failing workflows with specific names
- Finding workflows within a specific project
- Getting workflow ID before detailed analysis
- Checking if a named workflow is running/failed
Filters: project_name (optional), status ('success', 'error', 'running').
Use exact_match=True for precise names, False for partial matches.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exact_match | No | ||
project_name | No | ||
search_term | Yes | ||
status_filter | No |
Input Schema (JSON Schema)
{
"properties": {
"exact_match": {
"default": false,
"title": "Exact Match",
"type": "boolean"
},
"project_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project Name"
},
"search_term": {
"title": "Search Term",
"type": "string"
},
"status_filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status Filter"
}
},
"required": [
"search_term"
],
"type": "object"
}