The behavior and format of this command are the same for both Astro and Astro Private Cloud.
astro dev
astro dev logs
Show logs for Airflow components.
Show webserver, scheduler, and triggerer logs from your local Airflow environment.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Show logs for Airflow components.
astro dev logs
| Option | Description | Possible Values |
|---|---|---|
--api-server | Show only API server logs. In standalone mode, --webserver maps to this flag. | None |
--dag-processor | Show only dag processor logs. | None |
-f,--follow | Continue streaming most recent log output to your terminal. | None |
-s,--scheduler | Show only scheduler logs. | None |
-t,--triggerer | Show only triggerer logs. | None |
-w,--webserver | Show only webserver logs. In standalone mode, this maps to API server logs. | None |
$ astro dev logs
# Show the most recent logs from both the Airflow webserver and Scheduler
$ astro dev logs --follow
# Stream all new webserver and scheduler logs to the terminal
$ astro dev logs --follow --scheduler
# Stream only new scheduler logs to the terminal
Was this page helpful?