get_event_log
Retrieve a specific log entry by ID from Apache Airflow using the event_log_id. Simplifies access to detailed logs for debugging and monitoring workflows.
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"
],
"title": "get_event_logArguments",
"type": "object"
}