get_event_log
Retrieve specific event log details by ID, including timestamp, event type, DAG ID, task ID, and run ID, for precise task monitoring in Apache Airflow clusters.
Instructions
[Tool Role]: Retrieves a specific event log entry by ID.
Args: event_log_id: The event log ID to retrieve
Returns: Single event log entry: event_log_id, when, event, dag_id, task_id, run_id, etc.
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"
}