{# Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #} {% extends "airflow/dag.html" %} {% block page_title %}{{ dag.dag_id }} - DAG Details - {{ appbuilder.app_name }}{% endblock %} {% block content %} {{ super() }}

{{ title }}

{% for state, count in states %} {{ state }} {{ count }} {% endfor %}

{% if dag.parent_dag is defined and dag.parent_dag %} {% endif %} {% if dag.catchup %} {% else %} {% endif %}
Parent DAG {{ dag.parent_dag.dag_id }}
Schedule Interval {{ dag.schedule_interval }}
Catchup {{ dag.catchup }}
Start Date
Started {{ states|length > 0 }}
End Date
Max Active Runs {{ active_runs | length }} / {{ dag.max_active_runs }}
Concurrency {{ dag.max_active_tasks }}
Default Args {{ dag.default_args | pprint }}
Tasks Count {{ dag.tasks|length }}
Task IDs {{ dag.task_ids }}
Relative file location {{ dag.relative_fileloc }}
Owner {{ dag.owner }}
Owner Links {% if dag.owner_links %} {{ dag.owner_links }} {% else %} None {% endif %}
DAG Run Timeout {{ dag.dagrun_timeout }}
Tags {% if tags is defined and tags %} {% for tag in tags | sort(attribute='name') %} {{ tag.name }} {% endfor %} {% else %} None {% endif %}
DagModel debug information
{% for attr, value in dag_model_attrs %} {% endfor %}
Attribute Value
{{ attr }} {{ value }}
{% endblock %}