This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new fc4f37b105 Update the output of airflow info command in the doc
(#31336)
fc4f37b105 is described below
commit fc4f37b105ca0f03de7cc49ab4f00751287ae145
Author: Owen Leung <[email protected]>
AuthorDate: Thu May 18 15:44:53 2023 +0800
Update the output of airflow info command in the doc (#31336)
* Update logging-tasks.rst
Update the output of airflow info command
* Update logging-tasks.rst
* Update logging-tasks.rst
* Fix failing static check
---
.../logging-monitoring/logging-tasks.rst | 22 +++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git
a/docs/apache-airflow/administration-and-deployment/logging-monitoring/logging-tasks.rst
b/docs/apache-airflow/administration-and-deployment/logging-monitoring/logging-tasks.rst
index 495b341e22..45fcb1eaca 100644
---
a/docs/apache-airflow/administration-and-deployment/logging-monitoring/logging-tasks.rst
+++
b/docs/apache-airflow/administration-and-deployment/logging-monitoring/logging-tasks.rst
@@ -102,15 +102,19 @@ the example below.
$ airflow info
...
- airflow on PATH: [True]
-
- Executor: [SequentialExecutor]
- Task Logging Handlers: [StackdriverTaskHandler]
- SQL Alchemy Conn: [sqlite://///root/airflow/airflow.db]
- DAGs Folder: [/root/airflow/dags]
- Plugins Folder: [/root/airflow/plugins]
- Base Log Folder: [/root/airflow/logs]
-
+ Apache Airflow
+ version | 2.7.0.dev0
+ executor | LocalExecutor
+ task_logging_handler |
airflow.utils.log.file_task_handler.FileTaskHandler
+ sql_alchemy_conn |
postgresql+psycopg2://postgres:airflow@postgres/airflow
+ dags_folder | /files/dags
+ plugins_folder | /root/airflow/plugins
+ base_log_folder | /root/airflow/logs
+ remote_base_log_folder |
+
+ [skipping the remaining outputs for brevity]
+
+The output of ``airflow info`` above is truncated to only display the section
that pertains to the logging configuration.
You can also run ``airflow config list`` to check that the logging
configuration options have valid values.
.. _write-logs-advanced: