airflow-get-task-logs
Fetch the tail of an Airflow task instance log to quickly review the most recent output or errors for a specific try number.
Instructions
Fetch the tail (last N kB) of an Airflow task instance log for a specific try_number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dagId | Yes | ||
| dagRunId | Yes | ||
| taskId | Yes | ||
| tryNumber | No | ||
| tailKb | No | Return only the last N kilobytes of log | |
| extractFields | No | Comma-separated dotted paths to project from response (e.g. 'id,name,owner.name,columns.*.name'). Use `*` as wildcard for arrays/objects. Wrap field names with dots in backticks. Reduces response tokens dramatically on large entities. |