action apache_get_event_log { label: "Get a log entry" provider: apache method: GET path: "/eventLogs/{event_log_id}" encoding: json output: { type: "object" description: "Log of user operations via CLI or Web UI." properties: { dag_id: { type: "string" description: "The DAG ID" } event: { type: "string" description: "A key describing the type of event." } event_log_id: { type: "integer" description: "The event log ID" } execution_date: { type: "string" format: "date-time" description: "When the event was dispatched for an object having execution_date, the value of this field.\n" } extra: { type: "string" description: "Other information that was not included in the other fields, e.g. the complete CLI command.\n" } owner: { type: "string" description: "Name of the user who triggered these events a." } task_id: { type: "string" description: "The DAG ID" } when: { type: "string" format: "date-time" description: "The time when these events happened." } } } }