New in version 1.10.8.

In order to filter DAGs (e.g by team), you can add tags in each dag. The filter is saved in a cookie and can be reset by the reset button.

For example: In your Dag file, pass a list of tags you want to add to DAG object:

  1. dag = DAG(
  2. dag_id='example_dag_tag',
  3. schedule_interval='0 0 * * *',
  4. tags=['example']
  5. )

Screenshot:
🐶Add tags to DAGs and use it for filtering in the UI - 图1

2. Setting Configuration Options