get_event_log
Retrieve a specific Apache Airflow log entry by its ID to monitor workflow execution details and troubleshoot pipeline issues.
Instructions
Get a specific log entry by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event_log_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"event_log_id": {
"title": "Event Log Id",
"type": "integer"
}
},
"required": [
"event_log_id"
],
"type": "object"
}