我正在尝试更改Airflow中单个DAG的日志记录格式。
可用选项:
我试图仅针对单个DAG更改格式,因此需要一些东西作为运行时绑定,具体取决于DAG声明代码,而不是整个气流系统。
尝试:
from airflow.settings import configure_logging
configure_logging("%(asctime)s %(levelname)-6s [%(module)s.%(funcName)s:%(lineno)d] %(message)s")
传递参数:
'log_format': "%(asctime)s %(levelname)-6s [%(module)s.%(funcName)s:%(lineno)d] %(message)s"
到DAG